19 lines
481 B
Python
19 lines
481 B
Python
from conan import ConanFile
|
|
from conan.tools.build import can_run
|
|
from conan.tools.cmake import CMake, cmake_layout
|
|
import os
|
|
|
|
|
|
class TestPackageConan(ConanFile):
|
|
settings = "os", "arch", "compiler", "build_type"
|
|
generators = "CMakeToolchain", "CMakeDeps", "VirtualRunEnv"
|
|
|
|
def layout(self):
|
|
cmake_layout(self)
|
|
|
|
def requirements(self):
|
|
self.requires(self.tested_reference_str)
|
|
|
|
def test(self):
|
|
self.run("Bin2CPP --help", env="conanrun")
|