Attempted rework of conanfile
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-05-02 15:49:37 +02:00
parent 84b08f66e5
commit b5201ec46d
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class ArbutilsConan(ConanFile):
if self.settings.os == "Windows": if self.settings.os == "Windows":
self.output.warn("Noticed Windows target, setting Cmake WINDOWS=On.") self.output.warn("Noticed Windows target, setting Cmake WINDOWS=On.")
cmake.definitions["WINDOWS"] = "On" cmake.definitions["WINDOWS"] = "On"
if self.options["shared"]: if self.options.shared:
self.output.info("Building shared library.") self.output.info("Building shared library.")
cmake.definitions["SHARED"] = "On" cmake.definitions["SHARED"] = "On"
else: else: