This commit is contained in:
Christophe Riccio 2018-05-07 12:14:51 +02:00
commit 0daef60d98

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"]))