45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
from conans import ConanFile, CMake
|
|
|
|
|
|
class ArbutilsConan(ConanFile):
|
|
name = "Arbutils"
|
|
license = "TODO"
|
|
url = "https://git.p-epsilon.com/Deukhoofd/Arbutils"
|
|
description = "A helper library for the Epsilon project."
|
|
settings = "os", "compiler"
|
|
options = {"shared": [True, False], "staticC": [True, False]}
|
|
default_options = {"shared": True, "staticC": False}
|
|
generators = "cmake"
|
|
exports_sources = "*"
|
|
compiler = "clang"
|
|
|
|
def build(self):
|
|
cmake = CMake(self)
|
|
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"
|
|
if self.options.shared:
|
|
self.output.info("Building shared library.")
|
|
cmake.definitions["SHARED"] = "On"
|
|
else:
|
|
self.output.info("Building static library.")
|
|
|
|
if self.options.staticC:
|
|
self.output.info("Linking C libraries statically.")
|
|
cmake.definitions["STATICC"] = "On"
|
|
|
|
cmake.configure()
|
|
cmake.build()
|
|
|
|
def package(self):
|
|
self.copy("*.hpp", dst="include/Arbutils", src="src")
|
|
self.copy("*.hxx", dst="include/Arbutils", src="src")
|
|
self.copy("*.hpp", dst="include/extern", src="extern")
|
|
self.copy("*.dll", dst="bin", keep_path=False)
|
|
self.copy("*.so", dst="lib", keep_path=False)
|
|
self.copy("*.a", dst="lib", keep_path=False)
|
|
|
|
def package_info(self):
|
|
self.cpp_info.libs = ["Arbutils"]
|