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

Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
2020-08-20 14:56:10 +02:00
parent 6d6e6ab026
commit a6bfac61a8

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()