mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-29 15:11:58 +00:00
10 lines
344 B
CMake
10 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")
|