aboutsummaryrefslogtreecommitdiff
path: root/include/Conf.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-01-02 17:38:18 +0100
committerdec05eba <dec05eba@protonmail.com>2018-01-02 20:10:53 +0100
commit87a65f6913429b26e63fdee17cb8cfe93990db35 (patch)
treec2cfac67fc09f9c364869a107a140c34c5b73fd8 /include/Conf.hpp
parente8afe1630280335e5c7f4938f7c265b8798049d1 (diff)
Add support for cmake
Not working fully yet, will investigate why
Diffstat (limited to 'include/Conf.hpp')
-rw-r--r--include/Conf.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Conf.hpp b/include/Conf.hpp
index d3d80f9..764b3f9 100644
--- a/include/Conf.hpp
+++ b/include/Conf.hpp
@@ -160,10 +160,10 @@ namespace sibs
switch(optimizationLevel)
{
case OPT_LEV_DEBUG:
- cmakeArgsGlobal = "\"-DCMAKE_BUILD_TYPE=Debug\"";
+ cmakeArgsGlobal = "-G Ninja \"-DCMAKE_BUILD_TYPE=Debug\"";
break;
case OPT_LEV_RELEASE:
- cmakeArgsGlobal = "\"-DCMAKE_BUILD_TYPE=Release\"";
+ cmakeArgsGlobal = "-G Ninja \"-DCMAKE_BUILD_TYPE=Release\"";
break;
}
}