CreatureLib/conanfile.py

43 lines
1.4 KiB
Python
Raw Normal View History

2019-12-19 15:09:02 +00:00
from conans import ConanFile, CMake
2019-12-19 13:22:44 +00:00
class CreatureLibConan(ConanFile):
2019-12-19 13:22:44 +00:00
name = "CreatureLib"
license = "TODO"
url = "https://git.p-epsilon.com/Deukhoofd/CreatureLib"
description = "The core implementation for turn based battling using creatures."
2020-01-01 13:32:54 +00:00
settings = "os", "compiler"
options = {"shared": [True, False]}
default_options = {"shared": True}
2019-12-19 13:22:44 +00:00
generators = "cmake"
exports_sources = "*"
compiler = "clang"
2019-12-19 13:22:44 +00:00
def build(self):
cmake = CMake(self)
2020-01-01 13:17:13 +00:00
self.output.info("Target OS: %s." % self.settings.os)
if self.settings.os == "Windows":
self.output.warn("Noticed Windows target, setting Cmake WINDOWS=On.")
cmake.definitions["WINDOWS"] = "On"
cmake.configure()
2019-12-19 13:22:44 +00:00
cmake.build()
# Explicit way:
# self.run('cmake "%s/src" %s' % (self.source_folder, cmake.command_line))
# self.run("cmake --build . %s" % cmake.build_config)
def package(self):
self.copy("*.hpp", dst="include/CreatureLib", src="src")
self.copy("*.dll", dst="bin", keep_path=False)
self.copy("*.so", dst="lib", keep_path=False)
2019-12-19 13:22:44 +00:00
2020-02-27 10:21:23 +00:00
def imports(self):
if self.settings.os == "Windows":
self.copy("*.dll", "bin", "bin")
2019-12-19 13:22:44 +00:00
def package_info(self):
2019-12-26 13:17:10 +00:00
self.cpp_info.libs = ["CreatureLibCore", "CreatureLibLibrary", "CreatureLibBattling"]
def requirements(self):
self.requires("Arbutils/latest@epsilon/master")