diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-03-03 21:56:57 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-03-03 21:56:57 (GMT) |
commit | 1f6c6b1cc27fe867fa942210a657d691b8fb575c (patch) | |
tree | 55ef5673243fd9b36fbc468a7ee6106b7276fd66 /Tests | |
parent | d0f71e2545e234671abe3b6de325726f23cf854d (diff) | |
download | CMake-1f6c6b1cc27fe867fa942210a657d691b8fb575c.zip CMake-1f6c6b1cc27fe867fa942210a657d691b8fb575c.tar.gz CMake-1f6c6b1cc27fe867fa942210a657d691b8fb575c.tar.bz2 |
-use CMAKE_C_FLAGS when generating the assembler file
Alex
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/Assembler/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Assembler/CMakeLists.txt b/Tests/Assembler/CMakeLists.txt index 32727ed..30485c9 100644 --- a/Tests/Assembler/CMakeLists.txt +++ b/Tests/Assembler/CMakeLists.txt @@ -7,7 +7,7 @@ set(SRCS) # and also generate assembler files from C: if("${CMAKE_GENERATOR}" MATCHES "Makefile") if("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|Intel|SunPro|XL)$") - execute_process(COMMAND ${CMAKE_C_COMPILER} -S "${CMAKE_CURRENT_SOURCE_DIR}/main.c" -o "${CMAKE_CURRENT_BINARY_DIR}/main.s") + execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_C_FLAGS} -S "${CMAKE_CURRENT_SOURCE_DIR}/main.c" -o "${CMAKE_CURRENT_BINARY_DIR}/main.s") set(SRCS "${CMAKE_CURRENT_BINARY_DIR}/main.s") endif("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|Intel|SunPro|XL)$") endif("${CMAKE_GENERATOR}" MATCHES "Makefile") |