conan-recipes/systemc-scv/test_package/conanfile.py

26 lines
749 B
Python
Raw Normal View History

2017-10-28 17:07:33 +02:00
from conans import ConanFile, CMake
import os
import pprint
2017-10-28 17:07:33 +02:00
class SystemcverificationTestConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
2022-10-20 21:33:32 +02:00
options = {"shared": [True, False]}
default_options = "shared=False"
2017-10-28 17:07:33 +02:00
generators = "cmake"
2022-10-20 21:33:32 +02:00
requires = "systemc/2.3.3"
2017-10-28 17:07:33 +02:00
def build(self):
cmake = CMake(self)
# Current dir is "test_package/build/<build_id>" and CMakeLists.txt is in "test_package"
2022-10-20 21:33:32 +02:00
cmake.configure()
cmake.build()
2017-10-28 17:07:33 +02:00
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)