mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-28 21:54:00 +08:00
11 lines
354 B
CMake
11 lines
354 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")
|