mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Previously, it was inconsistent in that some platforms/compilers had this flag for the RelWithDebInfo configuration and some didn't. This fixes issue #11366.
14 lines
373 B
CMake
14 lines
373 B
CMake
set(CMAKE_ASM_VERBOSE_FLAG "-v")
|
|
|
|
set(CMAKE_ASM_FLAGS_INIT "")
|
|
set(CMAKE_ASM_FLAGS_DEBUG_INIT "-g")
|
|
set(CMAKE_ASM_FLAGS_MINSIZEREL_INIT "-Os -DNDEBUG")
|
|
set(CMAKE_ASM_FLAGS_RELEASE_INIT "-O3 -DNDEBUG")
|
|
set(CMAKE_ASM_FLAGS_RELWITHDEBINFO_INIT "-O2 -g -DNDEBUG")
|
|
|
|
if(UNIX)
|
|
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s;S)
|
|
else()
|
|
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS asm)
|
|
endif()
|