mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-01-09 18:31:23 +00:00
11 lines
344 B
CMake
11 lines
344 B
CMake
|
include(Compiler/GHS)
|
||
|
|
||
|
set(CMAKE_C_VERBOSE_FLAG "-v")
|
||
|
set(CMAKE_C_OUTPUT_EXTENSION ".o")
|
||
|
|
||
|
string(APPEND CMAKE_C_FLAGS_INIT " ")
|
||
|
string(APPEND CMAKE_C_FLAGS_DEBUG_INIT " -Odebug -g")
|
||
|
string(APPEND CMAKE_C_FLAGS_MINSIZEREL_INIT " -Ospace")
|
||
|
string(APPEND CMAKE_C_FLAGS_RELEASE_INIT " -O")
|
||
|
string(APPEND CMAKE_C_FLAGS_RELWITHDEBINFO_INIT " -O -g")
|