conanfile.py 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. from conan import ConanFile
  2. from conan.tools.cmake import CMake, CMakeToolchain, CMakeDeps
  3. import shutil
  4. import os
  5. class LsStdConan(ConanFile):
  6. name = "ls-std"
  7. version = "2024.1.0.1"
  8. license = "LGPL"
  9. url = "<Package recipe repository url here, for issues about the package>"
  10. description = "This library complements the C++ standard library by offering functionalities for game design - e.g. simple file handling, serialization, reflection and many more. This library is cross-platform and works on MacOS, Windows, Linux, Android & iOS."
  11. topics = ("boxing", "core", "encoding", "event", "io", "logic", "time")
  12. settings = "os", "compiler", "build_type", "arch"
  13. options = {"shared": [True, False]}
  14. default_options = {"shared": False}
  15. def source(self):
  16. self.run("git clone https://vcs.lynarstudios.de/public/ls-standard-library.git --branch v" + self.version +
  17. " --single-branch .")
  18. self.run("pwd")
  19. self.run("ls -la $pwd")
  20. def layout(self):
  21. self.folders.source = "ls-standard-library"
  22. self.folders.build = "build"
  23. self.folders.generators = "build/generators"
  24. def build(self):
  25. cmake = CMake(self)
  26. cmake.configure()
  27. cmake.build()
  28. def package(self):
  29. include_src = os.path.join(self.source_folder, "include")
  30. include_dst = os.path.join(self.package_folder, "include")
  31. shutil.copytree(include_src, include_dst, dirs_exist_ok=True)
  32. build_lib_src = os.path.join(self.build_folder)
  33. lib_dst = os.path.join(self.package_folder, "lib")
  34. os.makedirs(lib_dst, exist_ok=True)
  35. for file in os.listdir(build_lib_src):
  36. if file.endswith((".a", ".so", ".dll", ".lib", ".dylib")):
  37. shutil.copy(os.path.join(build_lib_src, file), lib_dst)
  38. def package_info(self):
  39. self.cpp_info.libs = ["ls-std-boxing", "ls-std-core", "ls-std-encoding", "ls-std-event", "ls-std-io", "ls-std-logic", "ls-std-time"]
  40. def generate(self):
  41. tool_chain = CMakeToolchain(self)
  42. if self.options.shared:
  43. tool_chain.variables['LS_STD_BUILD_STATIC'] = "OFF"
  44. tool_chain.variables['LS_STD_BUILD_SHARED'] = "ON"
  45. tool_chain.generate()
  46. deps = CMakeDeps(self)
  47. deps.generate()