From 4bc8a047b3b1ec32a22c54175abddb20688b48b2 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Wed, 1 Jan 2020 14:32:54 +0100 Subject: [PATCH] Require os setting --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 78959ac..4c95eae 100644 --- a/conanfile.py +++ b/conanfile.py @@ -6,7 +6,7 @@ class CreatureLibConan(ConanFile): license = "TODO" url = "https://git.p-epsilon.com/Deukhoofd/CreatureLib" description = "The core implementation for turn based battling using creatures." - settings = "compiler" + settings = "os", "compiler" options = {"shared": [True, False]} default_options = {"shared": True} generators = "cmake"