Stephen Seo
35db9faeeb
This is put in a new "conan" branch. Changes to the conan build process will only occur on this branch.
26 lines
642 B
Python
26 lines
642 B
Python
import os
|
|
|
|
from conan import ConanFile
|
|
from conan.tools.cmake import CMake, cmake_layout
|
|
from conan.tools.build import can_run
|
|
|
|
|
|
class udpcTestConan(ConanFile):
|
|
settings = "os", "compiler", "build_type", "arch"
|
|
generators = "CMakeDeps", "CMakeToolchain"
|
|
|
|
def requirements(self):
|
|
self.requires(self.tested_reference_str)
|
|
|
|
def build(self):
|
|
cmake = CMake(self)
|
|
cmake.configure()
|
|
cmake.build()
|
|
|
|
def layout(self):
|
|
cmake_layout(self)
|
|
|
|
def test(self):
|
|
if can_run(self):
|
|
cmd = os.path.join(self.cpp.build.bindir, "example")
|
|
self.run(cmd, env="conanrun")
|