conanfile.py 724 B

1234567891011121314151617181920212223
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from conans import ConanFile
  4. class EnttConan(ConanFile):
  5. name = "entt"
  6. description = "Gaming meets modern C++ - a fast and reliable entity-component system (ECS) and much more "
  7. topics = ("conan," "entt", "gaming", "entity", "ecs")
  8. url = "https://github.com/skypjack/entt"
  9. homepage = url
  10. author = "Michele Caini <michele.caini@gmail.com>"
  11. license = "MIT"
  12. exports = ["LICENSE"]
  13. exports_sources = ["src/*"]
  14. no_copy_source = True
  15. def package(self):
  16. self.copy(pattern="LICENSE", dst="licenses")
  17. self.copy(pattern="*", dst="include", src="src", keep_path=True)
  18. def package_id(self):
  19. self.info.header_only()