2018-11-16 12:45:07 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from conans import ConanFile, CMake
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
|
|
class TestPackageConan(ConanFile):
|
|
|
|
settings = "os", "compiler", "build_type", "arch"
|
2020-01-25 18:48:59 +01:00
|
|
|
generators = "cmake_find_package_multi"
|
2018-11-16 12:45:07 +01:00
|
|
|
|
|
|
|
def build(self):
|
|
|
|
cmake = CMake(self)
|
|
|
|
cmake.configure()
|
|
|
|
cmake.build()
|
|
|
|
|
|
|
|
def test(self):
|
2020-01-25 18:48:59 +01:00
|
|
|
assert os.path.isfile(os.path.join(self.deps_cpp_info["catch2"].rootpath, "licenses", "LICENSE.txt"))
|
2018-11-16 12:45:07 +01:00
|
|
|
bin_path = os.path.join("bin", "test_package")
|
|
|
|
self.run("%s -s" % bin_path, run_environment=True)
|