mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-28 13:44:02 +08:00
14 lines
549 B
CMake
14 lines
549 B
CMake
|
# This file is loaded when gcc/g++ is used for assembler files (the "ASM" cmake language)
|
||
|
include(Compiler/GNU)
|
||
|
|
||
|
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s;S;asm)
|
||
|
|
||
|
__compiler_gnu(ASM)
|
||
|
|
||
|
if(CMAKE_ASM${ASM_DIALECT}_COMPILER_ID_VENDOR_MATCH STREQUAL "GNU assembler")
|
||
|
set(CMAKE_DEPFILE_FLAGS_ASM${ASM_DIALECT} "--MD <DEP_FILE>")
|
||
|
set(CMAKE_ASM${ASM_DIALECT}_LINK_EXECUTABLE
|
||
|
"<CMAKE_LINKER> <FLAGS> <CMAKE_ASM${ASM_DIALECT}_LINK_FLAGS> <LINK_FLAGS> <OBJECTS> -o <TARGET> <LINK_LIBRARIES>")
|
||
|
set(CMAKE_ASM_DEFINE_FLAG "--defsym ")
|
||
|
endif()
|