summaryrefslogtreecommitdiff
path: root/Tests/Assembler
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2011-03-03 23:02:12 +0100
committerAlex Neundorf <neundorf@kde.org>2011-03-03 23:02:12 +0100
commit4139a734fae11d2ece631ff4805556ee2a6de66b (patch)
tree36de316977d74144ecaba0d8ae9aa38dfac6e07b /Tests/Assembler
parent1f6c6b1cc27fe867fa942210a657d691b8fb575c (diff)
downloadcmake-4139a734fae11d2ece631ff4805556ee2a6de66b.tar.gz
-only enable the asm test for the Intel compiler if we are under UNIX
...have to find out how to generate assembler with icl.exe Alex
Diffstat (limited to 'Tests/Assembler')
-rw-r--r--Tests/Assembler/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Assembler/CMakeLists.txt b/Tests/Assembler/CMakeLists.txt
index 30485c91b1..4036cbdd46 100644
--- a/Tests/Assembler/CMakeLists.txt
+++ b/Tests/Assembler/CMakeLists.txt
@@ -6,10 +6,10 @@ set(SRCS)
# (at least) the following toolchains can process assembler files directly
# and also generate assembler files from C:
if("${CMAKE_GENERATOR}" MATCHES "Makefile")
- if("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|Intel|SunPro|XL)$")
+ if(("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|SunPro|XL)$") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "Intel" AND UNIX))
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_C_COMPILER_ID}" MATCHES "^(GNU|HP|SunPro|XL)$") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "Intel" AND UNIX))
endif("${CMAKE_GENERATOR}" MATCHES "Makefile")