conan-recipes/Seasocks/test_package/conanfile.py

18 lines
453 B
Python
Raw Normal View History

from conans import ConanFile, CMake, tools
2017-10-27 23:37:45 +02:00
import os
class TestPackageConan(ConanFile):
2017-10-27 23:37:45 +02:00
settings = "os", "compiler", "build_type", "arch"
generators = "cmake"
def build(self):
cmake = CMake(self)
cmake.configure()
2017-10-27 23:37:45 +02:00
cmake.build()
def test(self):
if not tools.cross_building(self.settings):
bin_path = os.path.join("bin", "seasocks_test")
self.run(bin_path, run_environment=True)