diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-03-01 21:19:39 +0100 |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-03-01 21:19:39 +0100 |
commit | 20fe0beb7e205db76af4db1babe30f9f3bd62992 (patch) | |
tree | fbcb5b54f8ba2a1a74eb18bb89822daa9a2fc4b7 /Tests/Assembler | |
parent | 861447097ca772434325d31b31fd8c86d9cbfc6f (diff) | |
download | cmake-20fe0beb7e205db76af4db1babe30f9f3bd62992.tar.gz |
Only try assembler support for Makefile-based generators
Alex
Diffstat (limited to 'Tests/Assembler')
-rw-r--r-- | Tests/Assembler/CMakeLists.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Tests/Assembler/CMakeLists.txt b/Tests/Assembler/CMakeLists.txt index b23fc794ef..32727ed8c5 100644 --- a/Tests/Assembler/CMakeLists.txt +++ b/Tests/Assembler/CMakeLists.txt @@ -5,10 +5,12 @@ set(SRCS) # (at least) the following toolchains can process assembler files directly # and also generate assembler files from C: -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") - set(SRCS "${CMAKE_CURRENT_BINARY_DIR}/main.s") -endif("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|Intel|SunPro|XL)$") +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") + set(SRCS "${CMAKE_CURRENT_BINARY_DIR}/main.s") + endif("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|Intel|SunPro|XL)$") +endif("${CMAKE_GENERATOR}" MATCHES "Makefile") if(SRCS) |