Browse Source

Relevant pylint warnings fixed (#164).

main
offa 5 years ago
parent
commit
f3930eecb8
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      conanfile.py

+ 1
- 4
conanfile.py View File

import os

from conans import ConanFile, CMake, tools
from conans import ConanFile, CMake




class ScopeguardConan(ConanFile): class ScopeguardConan(ConanFile):
"trompeloeil/v34@rollbear/stable" "trompeloeil/v34@rollbear/stable"
) )



def _configure_cmake(self): def _configure_cmake(self):
cmake = CMake(self) cmake = CMake(self)
cmake.configure(source_folder=self._source_dir, build_folder="build") cmake.configure(source_folder=self._source_dir, build_folder="build")

Loading…
Cancel
Save