set windows platform type to type executable was compiled on
This commit is contained in:
parent
be660003ec
commit
2fe182b833
|
@ -52,7 +52,13 @@ Settings::Settings()
|
|||
posix = false;
|
||||
|
||||
// This assumes the code you are checking is for the same architecture this is compiled on.
|
||||
#if defined(_WIN32)
|
||||
platform(Win32);
|
||||
#elif defined(_WIN64)
|
||||
platform(Win64);
|
||||
#else
|
||||
platform(Host);
|
||||
#endif
|
||||
}
|
||||
|
||||
std::string Settings::addEnabled(const std::string &str)
|
||||
|
|
Loading…
Reference in New Issue