conanfile.py 471 B

123456789101112131415161718
  1. from conans import ConanFile, tools
  2. class GoogletestConan(ConanFile):
  3. name = "googletest"
  4. version = "1.11.0"
  5. settings = "os", "compiler", "build_type", "arch"
  6. description = "This is a unit testing framework for C++."
  7. url = "None"
  8. license = "BSD 3-Clause"
  9. author = "None"
  10. topics = None
  11. def package(self):
  12. self.copy("*")
  13. def package_info(self):
  14. self.cpp_info.libs = ["gmock", "gmock_main", "gtest", "gtest_main"]