20 lines
		
	
	
		
			575 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			575 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from conans import ConanFile, CMake
 | 
						|
import os
 | 
						|
 | 
						|
channel = os.getenv("CONAN_CHANNEL", "testing")
 | 
						|
username = os.getenv("CONAN_USERNAME", "g-truc")
 | 
						|
 | 
						|
class TestGlm(ConanFile):
 | 
						|
    settings = "os", "compiler", "build_type", "arch"
 | 
						|
    requires = "glm/master@%s/%s" % (username, channel)
 | 
						|
    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"]))
 | 
						|
 |