15 lines
348 B
Python
15 lines
348 B
Python
import os
|
|
from conan import ConanFile
|
|
from conan.tools.build import can_run
|
|
|
|
|
|
class daw_projectTestConan(ConanFile):
|
|
settings = "os", "compiler", "build_type", "arch"
|
|
|
|
def requirements(self):
|
|
self.requires(self.tested_reference_str)
|
|
|
|
def test(self):
|
|
if can_run(self):
|
|
self.run("daw-project", env="conanrun")
|