Skip to content

Commit d7e9828

Browse files
committed
Release new conan package version with latest changes
1 parent 2c7ab7d commit d7e9828

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class Ctti(ConanFile):
44
name = "ctti"
55
url = "https::/github.com/Manu343726/ctti"
66
license = "MIT"
7-
version = "0.0.1"
7+
version = "0.0.2"
88
exports = "*.hpp"
99
build_policy = "missing"
1010

test_package/conanfile.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ class TestCtti(ConanFile):
1414

1515
def build(self):
1616
cmake = CMake(self)
17-
self.run('cmake {} {}'.format(self.conanfile_directory, cmake.command_line))
18-
self.run('cmake --build . {}'.format(cmake.build_config))
17+
cmake.configure()
18+
cmake.build()
1919

2020
def test(self):
2121
self.run(os.path.join('.', 'bin', 'example'))

0 commit comments

Comments
 (0)