🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
432 B

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from conans import ConanFile, CMake
  4. import os
  5. class TestPackageConan(ConanFile):
  6. settings = "os", "compiler", "build_type", "arch"
  7. generators = "cmake"
  8. def build(self):
  9. cmake = CMake(self)
  10. cmake.configure()
  11. cmake.build()
  12. def test(self):
  13. bin_path = os.path.join("bin", "test_package")
  14. self.run(bin_path, run_environment=True)