mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 01:49:42 -06:00
actually add the cmake script too
This commit is contained in:
9
cmake/DefaultBuildFlags.cmake
Normal file
9
cmake/DefaultBuildFlags.cmake
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
if (CMAKE_C_COMPILER_ID STREQUAL GNU)
|
||||||
|
set(CMAKE_C_FLAGS_DEBUG_INIT "-g -Og")
|
||||||
|
endif()
|
||||||
|
if (CMAKE_CXX_COMPILER_ID STREQUAL GNU)
|
||||||
|
set(CMAKE_CXX_FLAGS_DEBUG_INIT "-g -Og")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
string(REPLACE "-O2" "-O3" CMAKE_C_FLAGS_RELEASE_INIT "${CMAKE_C_FLAGS_RELEASE_INIT}")
|
||||||
|
string(REPLACE "-O2" "-O3" CMAKE_CXX_FLAGS_RELEASE_INIT "${CMAKE_CXX_FLAGS_RELEASE_INIT}")
|
Reference in New Issue
Block a user