Added VCC build
This commit is contained in:
15
external/glm-0.9.9-a2/util/conan-package/test_package/conanfile.py
vendored
Normal file
15
external/glm-0.9.9-a2/util/conan-package/test_package/conanfile.py
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
from conans import ConanFile, CMake
|
||||
import os
|
||||
|
||||
class TestGlm(ConanFile):
|
||||
settings = "os", "compiler", "build_type", "arch"
|
||||
generators = "cmake"
|
||||
|
||||
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)
|
||||
|
||||
def test(self):
|
||||
self.run(os.sep.join([".","bin", "testGlm"]))
|
||||
|
||||
Reference in New Issue
Block a user