conan-recipes/Seasocks/test_package/conanfile.py

27 lines
744 B
Python
Raw Normal View History

2017-10-27 23:37:45 +02:00
from conans import ConanFile, CMake
import os
class SeasocksTestConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
options = {"shared": [True, False]}
default_options = "shared=True"
2017-10-27 23:37:45 +02:00
generators = "cmake"
2019-06-15 22:31:04 +02:00
build_requires = "Catch/1.9.6@uilianries/stable"
2017-10-27 23:37:45 +02:00
def configure(self):
self.options["Seasocks"].shared = self.options.shared
2017-10-27 23:37:45 +02:00
def build(self):
cmake = CMake(self)
cmake.configure()
2017-10-27 23:37:45 +02:00
cmake.build()
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(".%sServerTests" % os.sep)