aboutsummaryrefslogtreecommitdiff
path: root/include/Conf.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-10-05 05:02:49 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:39:33 +0200
commit5250cb90406693163763a214af95f670e0e3a4e0 (patch)
tree7025c762d4f53aebfdc140d615306f558fa9b69a /include/Conf.hpp
parent3059b1cb8d701cf23f3e04a8a8fdcfcaa6a397fb (diff)
Add cross compilation (mingw-w64 x86_64)
Currently only cross compiling from linux64 to win64 works. Need to test cross compilation more, currently the cross compilation uses same profile as GCC, is that correct?
Diffstat (limited to 'include/Conf.hpp')
-rw-r--r--include/Conf.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/Conf.hpp b/include/Conf.hpp
index 17ecc6b..15c8471 100644
--- a/include/Conf.hpp
+++ b/include/Conf.hpp
@@ -107,7 +107,8 @@ namespace sibs
enum class Compiler
{
GCC,
- MSVC
+ MSVC,
+ MINGW_W64
};
enum class CVersion
@@ -303,7 +304,8 @@ namespace sibs
showWarnings(false),
zigTestAllFiles(false),
packaging(false),
- bundling(false)
+ bundling(false),
+ platform(SYSTEM_PLATFORM)
{
cmakeDirGlobal = projectPath;
cmakeDirStatic = cmakeDirGlobal;
@@ -504,6 +506,7 @@ namespace sibs
bool packaging;
bool bundling;
std::string version;
+ Platform platform;
protected:
virtual void processObject(StringView name) override;
virtual void processField(StringView name, const ConfigValue &value) override;