22 lines
		
	
	
		
			713 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			713 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from conans import ConanFile, CMake
 | 
						|
import os
 | 
						|
 | 
						|
class TestGlew(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", "testGlew"]))
 | 
						|
 | 
						|
    def imports(self):
 | 
						|
        if self.settings.os == "Windows":
 | 
						|
            self.copy(pattern="*.dll", dst="bin", src="bin")
 | 
						|
            self.copy(pattern="*.pdb", dst="bin", src="bin")
 | 
						|
        if self.settings.os == "Macos":
 | 
						|
            self.copy(pattern="*.dylib", dst="bin", src="lib")
 |