diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 10:52:23 -0400 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 11:36:28 -0400 |
commit | 626cc44d7ababf037cbf1f0a6fd1372efc296b64 (patch) | |
tree | baf97b6ebf7ff228a7921bfade66d095cb50ae36 /src | |
parent | 4105f38022a525aab2e7d4288f121b4f0a0dd7b2 (diff) |
Build System: Fix GCC & MINGW Build.
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3a57356ab..1e977e8a8 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -62,6 +62,10 @@ else() -Wno-unused-parameter ) + if (ARCHITECTURE_x86_64) + add_compile_options("-mcx16") + endif() + if (APPLE AND CMAKE_CXX_COMPILER_ID STREQUAL Clang) add_compile_options("-stdlib=libc++") endif() |