25 lines
900 B
Python
25 lines
900 B
Python
|
from conans import ConanFile, CMake
|
||
|
import os
|
||
|
|
||
|
class SystemcverificationTestConan(ConanFile):
|
||
|
settings = "os", "compiler", "build_type", "arch"
|
||
|
generators = "cmake"
|
||
|
|
||
|
def build(self):
|
||
|
cxxstd = self.options["SystemC"].stdcxx
|
||
|
cmake = CMake(self)
|
||
|
# Current dir is "test_package/build/<build_id>" and CMakeLists.txt is in "test_package"
|
||
|
cmake.configure(source_dir=self.conanfile_directory, build_dir="./")
|
||
|
#cmake.build()
|
||
|
self.run('cmake %s %s -DCMAKE_CXX_STANDARD=%s' % (self.conanfile_directory, cmake.command_line, cxxstd))
|
||
|
self.run("cmake --build . %s" % cmake.build_config)
|
||
|
|
||
|
def imports(self):
|
||
|
self.copy("*.dll", dst="bin", src="bin")
|
||
|
self.copy("*.dylib*", dst="bin", src="lib")
|
||
|
self.copy('*.so*', dst='bin', src='lib')
|
||
|
|
||
|
def test(self):
|
||
|
os.chdir("bin")
|
||
|
self.run(".%sexample" % os.sep)
|