12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- from conan import ConanFile
- from conan.tools.cmake import CMake, CMakeToolchain, CMakeDeps
- import shutil
- import os
- class LsStdConan(ConanFile):
- name = "ls-std"
- version = "2024.1.0.1"
- license = "LGPL"
- url = "<Package recipe repository url here, for issues about the package>"
- 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."
- topics = ("boxing", "core", "encoding", "event", "io", "logic", "time")
- settings = "os", "compiler", "build_type", "arch"
- options = {"shared": [True, False]}
- default_options = {"shared": False}
- def source(self):
- self.run("git clone https://vcs.lynarstudios.de/public/ls-standard-library.git --branch v" + self.version +
- " --single-branch .")
- self.run("pwd")
- self.run("ls -la $pwd")
- def layout(self):
- self.folders.source = "ls-standard-library"
- self.folders.build = "build"
- self.folders.generators = "build/generators"
- def build(self):
- cmake = CMake(self)
- cmake.configure()
- cmake.build()
- def package(self):
- include_src = os.path.join(self.source_folder, "include")
- include_dst = os.path.join(self.package_folder, "include")
- shutil.copytree(include_src, include_dst, dirs_exist_ok=True)
- build_lib_src = os.path.join(self.build_folder)
- lib_dst = os.path.join(self.package_folder, "lib")
- os.makedirs(lib_dst, exist_ok=True)
- for file in os.listdir(build_lib_src):
- if file.endswith((".a", ".so", ".dll", ".lib", ".dylib")):
- shutil.copy(os.path.join(build_lib_src, file), lib_dst)
- def package_info(self):
- 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"]
- def generate(self):
- tool_chain = CMakeToolchain(self)
- if self.options.shared:
- tool_chain.variables['LS_STD_BUILD_STATIC'] = "OFF"
- tool_chain.variables['LS_STD_BUILD_SHARED'] = "ON"
- tool_chain.generate()
- deps = CMakeDeps(self)
- deps.generate()
|