uvw/.conan/test_package/conanfile.py
2018-10-25 17:10:39 +02:00

21 lines
441 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from conans import ConanFile, CMake
class TestPackageConan(ConanFile):
settings = "os", "compiler", "build_type", "arch"
generators = "cmake"
def build(self):
cmake = CMake(self)
cmake.configure()
cmake.build()
def test(self):
test_package = os.path.join("bin", "test_package")
self.run(test_package, run_environment=True)