]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb/conan/test_package/conanfile.py
778ba6a974fbac7997273b25cb8f776cf058ad0c
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / prometheus-cpp / 3rdparty / civetweb / conan / test_package / conanfile.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 import os
4 from conans import ConanFile, CMake
5
6
7 class TestPackageConan(ConanFile):
8 settings = "os", "compiler", "build_type", "arch"
9 generators = "cmake"
10
11 def build(self):
12 cmake = CMake(self)
13 cmake.configure()
14 cmake.build()
15
16 def test(self):
17 assert os.path.isfile(os.path.join(self.deps_cpp_info["civetweb"].rootpath, "licenses", "LICENSE.md"))
18 bin_path = os.path.join("bin", "test_package")
19 self.run(bin_path, run_environment=True)