소스 검색

Options added to conan recipe (#159).

main
offa 5 년 전
부모
커밋
e16782a315
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. +10
    -0
      conanfile.py

+ 10
- 0
conanfile.py 파일 보기

@@ -23,9 +23,19 @@ class ScopeguardConan(ConanFile):
"Catch2/2.9.2@catchorg/stable",
"trompeloeil/v35@rollbear/stable"
)
options = {
"unittest": ["ON", "OFF"],
"enable_compat_header": ["ON", "OFF"]
}
default_options = (
"unittest=ON",
"enable_compat_header=OFF"
)

def _configure_cmake(self):
cmake = CMake(self)
cmake.definitions["UNITTEST"] = self.options.unittest
cmake.definitions["ENABLE_COMPAT_HEADER"] = self.options.enable_compat_header
cmake.configure(source_folder=self._source_dir, build_folder="build")
return cmake


Loading…
취소
저장