Actually use CMAKE_ASM_COMPILER for asm, instead of CMAKE_C_COMPILER

Alex
This commit is contained in:
Alex Neundorf 2011-02-08 22:23:13 +01:00
parent 38f92bfbe1
commit 64e66ebdc8
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ include(Compiler/GNU)
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s;S;asm)
set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_C_COMPILER> <DEFINES> <FLAGS> -o <OBJECT> -c <SOURCE>")
set(CMAKE_ASM_COMPILE_OBJECT "<CMAKE_ASM_COMPILER> <DEFINES> <FLAGS> -o <OBJECT> -c <SOURCE>")
__compiler_gnu(ASM)