Log which level size we're using from conan.
continuous-integration/drone/push Build is failing Details

Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
Deukhoofd 2020-08-20 14:56:10 +02:00
parent 6d6e6ab026
commit a6bfac61a8
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@ class CreatureLibConan(ConanFile):
if self.options.staticC:
self.output.info("Linking C libraries statically")
cmake.definitions["STATICC"] = "ON"
self.output.info("Using level size of: %x" % self.options.level_size)
cmake.definitions["LEVEL_SIZE"] = self.options.level_size;
cmake.configure()