We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c7ab7d commit d7e9828Copy full SHA for d7e9828
conanfile.py
@@ -4,7 +4,7 @@ class Ctti(ConanFile):
4
name = "ctti"
5
url = "https::/github.com/Manu343726/ctti"
6
license = "MIT"
7
- version = "0.0.1"
+ version = "0.0.2"
8
exports = "*.hpp"
9
build_policy = "missing"
10
test_package/conanfile.py
@@ -14,8 +14,8 @@ class TestCtti(ConanFile):
14
15
def build(self):
16
cmake = CMake(self)
17
- self.run('cmake {} {}'.format(self.conanfile_directory, cmake.command_line))
18
- self.run('cmake --build . {}'.format(cmake.build_config))
+ cmake.configure()
+ cmake.build()
19
20
def test(self):
21
self.run(os.path.join('.', 'bin', 'example'))
0 commit comments