Adaptation to latest conan version

This commit is contained in:
dimitri 2018-04-18 04:58:00 +02:00
parent 5ba45d302c
commit 347e767ac4

View File

@ -7,8 +7,8 @@ class TestGlm(ConanFile):
def build(self):
cmake = CMake(self)
self.run('cmake "%s" %s' % (self.conanfile_directory, cmake.command_line))
self.run("cmake --build . %s" % cmake.build_config)
cmake.configure()
cmake.build()
def test(self):
self.run(os.sep.join([".","bin", "testGlm"]))