forked from mirror/trompeloeil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
473 B
Python
20 lines
473 B
Python
from conans import ConanFile, CMake
|
|
import os
|
|
|
|
class TrompeloeilTestConan(ConanFile):
|
|
settings = "os", "compiler", "build_type", "arch"
|
|
generators = "cmake"
|
|
|
|
def build(self):
|
|
cmake = CMake(self)
|
|
cmake.configure()
|
|
cmake.build()
|
|
|
|
def imports(self):
|
|
self.copy("*.dll", dst="bin", src="bin")
|
|
self.copy("*.dylib*", dst="bin", src="lib")
|
|
|
|
def test(self):
|
|
os.chdir("bin")
|
|
self.run(".%sexample" % os.sep)
|