cmake/Modules/Compiler/Intel-ASM.cmake

13 lines
338 B
CMake
Raw Normal View History

2016-10-30 18:24:19 +01:00
include(Compiler/Intel)
__compiler_intel(ASM)
2011-06-19 15:41:06 +03:00
2016-10-30 18:24:19 +01:00
string(APPEND CMAKE_ASM_FLAGS_MINSIZEREL_INIT " -DNDEBUG")
string(APPEND CMAKE_ASM_FLAGS_RELEASE_INIT " -DNDEBUG")
string(APPEND CMAKE_ASM_FLAGS_RELWITHDEBINFO_INIT " -DNDEBUG")
2011-06-19 15:41:06 +03:00
2013-03-16 19:13:01 +02:00
if(UNIX)
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s;S)
else()
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS asm)
endif()