mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
8cd5c4e7bd
* Remove unused cmake modules - Both are unedited versions of modules provided by cmake itself * Remove Compiler/GNU.cmake - Only chang was various _INIT flags, which are handled via CMAKE_USER_MAKE_RULES_OVERRIDE instead * Remove Platform/Windows.cmake - There's no clear explination for this file being in reactos and is simply an old version of the one in cmake * Remove Platform/Windows-MSVC.cmake - _INIT variable changes moved to overrides-msvc.cmake Remove /implib from link commands * Remove CMakeDetermineASMCompiler.cmake - Only change from 3.2 is the addition of a compiler list for the generic ASM dialect, but toolchain files explicitly set a compiler so the list is never used
6 lines
224 B
CMake
6 lines
224 B
CMake
foreach(lang C CXX ASM)
|
|
set(CMAKE_${lang}_FLAGS_DEBUG "")
|
|
set(CMAKE_${lang}_FLAGS_MINSIZEREL "-Os -DNDEBUG")
|
|
set(CMAKE_${lang}_FLAGS_RELEASE "")
|
|
set(CMAKE_${lang}_FLAGS_RELWITHDEBINFO "-O2 -g -DNDEBUG")
|
|
endforeach()
|