Merge pull request #756 from ghost/master

Adaptation to latest conan version #756
This commit is contained in:
Christophe 2018-05-07 10:40:49 +02:00 committed by GitHub
commit c8e115f83e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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