53 lines
1.4 KiB
Python
53 lines
1.4 KiB
Python
from conan import ConanFile
|
|
from conan.tools.cmake import CMake, CMakeDeps, CMakeToolchain, cmake_layout
|
|
from conan.tools.files import copy
|
|
|
|
|
|
class WebotsControllerConan(ConanFile):
|
|
name = "webots-controller"
|
|
version = "0.1.0"
|
|
package_type = "library"
|
|
|
|
settings = "os", "arch", "compiler", "build_type"
|
|
options = {
|
|
"shared": [True, False],
|
|
"fPIC": [True, False],
|
|
"no_plugins": [True, False],
|
|
}
|
|
default_options = {
|
|
"shared": True,
|
|
"fPIC": True,
|
|
"no_plugins": True,
|
|
}
|
|
|
|
exports_sources = "CMakeLists.txt", "src/*", "LICENSE", "README.md"
|
|
|
|
def config_options(self):
|
|
if self.settings.os == "Windows":
|
|
del self.options.fPIC
|
|
|
|
def layout(self):
|
|
cmake_layout(self)
|
|
|
|
def generate(self):
|
|
deps = CMakeDeps(self)
|
|
deps.generate()
|
|
|
|
tc = CMakeToolchain(self)
|
|
tc.variables["BUILD_SHARED_LIBS"] = bool(self.options.shared)
|
|
tc.variables["WEBOTS_CONTROLLER_NO_PLUGINS"] = bool(self.options.no_plugins)
|
|
tc.generate()
|
|
|
|
def build(self):
|
|
cmake = CMake(self)
|
|
cmake.configure()
|
|
cmake.build()
|
|
|
|
def package(self):
|
|
cmake = CMake(self)
|
|
cmake.install()
|
|
copy(self, "LICENSE", src=self.source_folder, dst=f"{self.package_folder}/licenses")
|
|
|
|
def package_info(self):
|
|
self.cpp_info.libs = ["webots_controller"]
|