We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d43c92b commit 40d9a7dCopy full SHA for 40d9a7d
conanfile.py
@@ -24,7 +24,7 @@ class ScopeguardConan(ConanFile):
24
"enable_compat_header": [True, False]
25
}
26
default_options = {
27
- "unittest": True,
+ "unittest": False,
28
"enable_compat_header": False
29
30
__requirements = [
script/ci_build.sh
@@ -21,6 +21,7 @@ fi
21
mkdir build && cd build
22
23
conan install \
+ -o unittest=True \
--build=missing \
-of . \
-s compiler.cppstd=17 \
script/conan_build.sh
@@ -8,4 +8,4 @@ apt-get install -y pipx
8
pipx install conan
9
10
conan profile detect
11
-conan create --build=missing .
+conan create -o unittest=True --build=missing .
0 commit comments