uvw/.conan/test_package/conanfile.py
2019-01-24 14:27:26 +01:00

19 lines
439 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)