[2579] | 1 | # |
---|
[2626] | 2 | # ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | # > www.orxonox.net < |
---|
[2579] | 4 | # |
---|
[2626] | 5 | # This program is free software; you can redistribute it and/or |
---|
| 6 | # modify it under the terms of the GNU General Public License |
---|
| 7 | # as published by the Free Software Foundation; either version 2 |
---|
| 8 | # of the License, or (at your option) any later version. |
---|
[2579] | 9 | # |
---|
[2626] | 10 | # This program is distributed in the hope that it will be useful, |
---|
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | # GNU General Public License for more details. |
---|
[2579] | 14 | # |
---|
[2626] | 15 | # You should have received a copy of the GNU General Public License along |
---|
| 16 | # with this program; if not, write to the Free Software Foundation, |
---|
| 17 | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
[2579] | 18 | # |
---|
| 19 | # |
---|
[2626] | 20 | # Author: |
---|
| 21 | # Reto Grieder |
---|
| 22 | # Description: |
---|
| 23 | # Sets the right compiler and linker flags for the Microsoft Compiler. |
---|
[2579] | 24 | # |
---|
| 25 | |
---|
[5664] | 26 | INCLUDE(FlagUtilities) |
---|
| 27 | |
---|
[3196] | 28 | # We make use of variadic macros, which is only supported by MSVC 8 and above |
---|
| 29 | IF(MSVC_VERSION LESS 1400) |
---|
[8362] | 30 | MESSAGE(FATAL_ERROR "Microsoft Visual Studio versions below 8 (2005) are not supported.") |
---|
[3196] | 31 | ENDIF() |
---|
| 32 | |
---|
| 33 | # Orxonox only supports MSVC 8 and above, which gets asserted above |
---|
| 34 | SET(PCH_COMPILER_SUPPORT TRUE) |
---|
| 35 | |
---|
| 36 | |
---|
[2621] | 37 | #################### Compiler Flags ##################### |
---|
[2582] | 38 | |
---|
[2621] | 39 | # CMake default flags : -DWIN32 -D_WINDOWS -W3 -Zm1000 |
---|
| 40 | # additionally for CXX: -EHsc -GR |
---|
[8362] | 41 | # We keep these flags but reset the build specific flags |
---|
| 42 | SET_COMPILER_FLAGS("" Debug RelWithDebInfo Release MinSizeRel CACHE) |
---|
| 43 | |
---|
| 44 | # Make sure we define all the possible macros for identifying Windows |
---|
| 45 | ADD_COMPILER_FLAGS("-D__WIN32__ -D_WIN32" CACHE) |
---|
| 46 | # Suppress some annoying warnings |
---|
[2621] | 47 | ADD_COMPILER_FLAGS("-D_CRT_SECURE_NO_WARNINGS" CACHE) |
---|
[7163] | 48 | ADD_COMPILER_FLAGS("-D_SCL_SECURE_NO_WARNINGS" CACHE) |
---|
[2582] | 49 | |
---|
[8362] | 50 | # Use multiprocessed compiling (like "make -j3" on Unix) |
---|
| 51 | ADD_COMPILER_FLAGS("-MP" CACHE) |
---|
[2639] | 52 | |
---|
[8362] | 53 | # Always generate debug symbols (there is really no reason not to) |
---|
| 54 | ADD_COMPILER_FLAGS("-Zi" CACHE) |
---|
| 55 | |
---|
| 56 | # Never omit frame pointers to avoid useless stack traces (the performance |
---|
| 57 | # loss is almost not measurable) |
---|
| 58 | ADD_COMPILER_FLAGS("-Oy-" CACHE) |
---|
[8351] | 59 | # Enable non standard floating point optimisations |
---|
| 60 | ADD_COMPILER_FLAGS("-fp:fast" CACHE) |
---|
| 61 | |
---|
[8362] | 62 | # Set build specific flags. |
---|
| 63 | # -MD[d] Multithreaded [debug] shared MSVC runtime library |
---|
| 64 | # -O[d|2|1] No optimisations, optimise for speed, optimise for size |
---|
| 65 | # -Oi[-] Use or disable use of intrinisic functions |
---|
| 66 | # -GL Link time code generation (see -LTCG in linker flags) |
---|
| 67 | # -RTC1 Both basic runtime checks |
---|
| 68 | ADD_COMPILER_FLAGS("-MDd -Od -Oi -D_DEBUG -RTC1" Debug CACHE) |
---|
| 69 | ADD_COMPILER_FLAGS("-MD -O2 -Oi -DNDEBUG" RelWithDebInfo CACHE) |
---|
| 70 | ADD_COMPILER_FLAGS("-MD -O2 -Oi -DNDEBUG -GL" Release CACHE) |
---|
| 71 | ADD_COMPILER_FLAGS("-MD -O1 -Oi- -DNDEBUG -GL" MinSizeRel CACHE) |
---|
[2639] | 72 | |
---|
[2668] | 73 | |
---|
[2639] | 74 | ####################### Warnings ######################## |
---|
| 75 | |
---|
[8362] | 76 | # -WX General warning Level X |
---|
| 77 | # -wdX Disable specific warning X |
---|
| 78 | # -wnX Set warning level of specific warning X to level n |
---|
| 79 | |
---|
[2621] | 80 | # Increase warning level if requested |
---|
[2673] | 81 | IF(EXTRA_COMPILER_WARNINGS) |
---|
[2621] | 82 | REMOVE_COMPILER_FLAGS("-W1 -W2 -W3" CACHE) |
---|
| 83 | ADD_COMPILER_FLAGS ("-W4" CACHE) |
---|
[2624] | 84 | ELSE() |
---|
[2621] | 85 | REMOVE_COMPILER_FLAGS("-W1 -W2 -W4" CACHE) |
---|
| 86 | ADD_COMPILER_FLAGS ("-W3" CACHE) |
---|
[2624] | 87 | ENDIF() |
---|
[2583] | 88 | |
---|
[2639] | 89 | # "<type> needs to have dll-interface to be used by clients' |
---|
| 90 | # Happens on STL member variables which are not public |
---|
| 91 | ADD_COMPILER_FLAGS("-w44251" CACHE) |
---|
[3196] | 92 | ADD_COMPILER_FLAGS("-w44275" CACHE) # For inheritance |
---|
[2588] | 93 | |
---|
[2639] | 94 | # Multiple assignment operators specified |
---|
| 95 | ADD_COMPILER_FLAGS("-w44522" CACHE) |
---|
[2626] | 96 | |
---|
[2639] | 97 | # Forcing values to bool |
---|
| 98 | ADD_COMPILER_FLAGS("-w44800" CACHE) |
---|
| 99 | |
---|
[7379] | 100 | # TODO: Resolve the cause of this warning! |
---|
[7810] | 101 | # ('class1' : inherits 'class2::member' via dominance) |
---|
[7379] | 102 | ADD_COMPILER_FLAGS("-w44250" CACHE) |
---|
| 103 | |
---|
[2639] | 104 | # conversion from 'double' to 'float', possible loss of data |
---|
| 105 | # conversion from 'ogg_int64_t' to 'long', possible loss of data |
---|
| 106 | # ADD_COMPILER_FLAGS("-w44244" CACHE) |
---|
| 107 | |
---|
| 108 | # "conversion from 'size_t' to 'unsigned int', possible loss of data |
---|
| 109 | # ADD_COMPILER_FLAGS("-w44267" CACHE) |
---|
| 110 | |
---|
| 111 | # "truncation from 'double' to 'float' |
---|
| 112 | # ADD_COMPILER_FLAGS("-w44305" CACHE) |
---|
| 113 | |
---|
| 114 | # "non dll-interface class used as base for dll-interface class" |
---|
| 115 | # ADD_COMPILER_FLAGS("-w44275" CACHE) |
---|
| 116 | |
---|
| 117 | |
---|
[8362] | 118 | ##################### Linker Flags ###################### |
---|
[2639] | 119 | |
---|
[8362] | 120 | # CMake default flags: -MANIFEST -STACK:10000000 -machine:I386 |
---|
| 121 | # We keep these flags but reset the build specific flags |
---|
| 122 | SET_LINKER_FLAGS("" Debug RelWithDebInfo Release MinSizeRel CACHE) |
---|
[2639] | 123 | |
---|
[8362] | 124 | # Always generate debug symbols (there is really no reason not to) |
---|
| 125 | ADD_LINKER_FLAGS("-DEBUG" CACHE) |
---|
[2639] | 126 | |
---|
[8362] | 127 | # Never fold multiple functions into a single one because we might compare |
---|
| 128 | # function pointers (for instance with network functions) |
---|
| 129 | ADD_LINKER_FLAGS("-OPT:NOICF" CACHE) |
---|
[2639] | 130 | |
---|
[8362] | 131 | # Very old flag that would do some extra Windows 98 alignment optimisations |
---|
| 132 | ADD_LINKER_FLAGS("-OPT:NOWIN98" MSVC80 CACHE) |
---|
[2588] | 133 | |
---|
[8362] | 134 | # Incremental linking speeds up development builds |
---|
| 135 | ADD_LINKER_FLAGS("-INCREMENTAL:YES" Debug RelWithDebInfo CACHE) |
---|
| 136 | ADD_LINKER_FLAGS("-INCREMENTAL:NO" Release MinSizeRel CACHE) |
---|
[7440] | 137 | |
---|
[8362] | 138 | # Eliminate unreferenced data |
---|
| 139 | ADD_LINKER_FLAGS("-OPT:REF" Release MinSizeRel CACHE) |
---|
[5691] | 140 | |
---|
[8362] | 141 | # Link time code generation can improve run time performance at the cost of |
---|
| 142 | # hugely increased link time (the total build time is about the same though) |
---|
| 143 | ADD_LINKER_FLAGS("-LTCG" Release MinSizeRel CACHE) |
---|