You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
|
from conans import ConanFile, CMake |
|
import os |
|
|
|
class TestGlm(ConanFile): |
|
settings = "os", "compiler", "build_type", "arch" |
|
generators = "cmake" |
|
|
|
def build(self): |
|
cmake = CMake(self) |
|
cmake.configure() |
|
cmake.build() |
|
|
|
def test(self): |
|
self.run(os.sep.join([".","bin", "testGlm"])) |
|
|
|
|