From 861447097ca772434325d31b31fd8c86d9cbfc6f Mon Sep 17 00:00:00 2001 From: Alex Neundorf Date: Thu, 24 Feb 2011 20:56:53 +0100 Subject: Use a regexp instead a lot of ORs for checking the compiler ID Alex --- Tests/Assembler/CMakeLists.txt | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/Tests/Assembler/CMakeLists.txt b/Tests/Assembler/CMakeLists.txt index bdde107..b23fc79 100644 --- a/Tests/Assembler/CMakeLists.txt +++ b/Tests/Assembler/CMakeLists.txt @@ -3,20 +3,12 @@ project(Assembler) set(SRCS) -# (at least) the following toolchains xan process assembler files directly +# (at least) the following toolchains can process assembler files directly # and also generate assembler files from C: -if(CMAKE_C_COMPILER_ID STREQUAL "GNU" - OR CMAKE_C_COMPILER_ID STREQUAL "HP" - OR CMAKE_C_COMPILER_ID STREQUAL "Intel" - OR CMAKE_C_COMPILER_ID STREQUAL "SunPro" - OR CMAKE_C_COMPILER_ID STREQUAL "XL") +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 STREQUAL "GNU" - OR CMAKE_C_COMPILER_ID STREQUAL "HP" - OR CMAKE_C_COMPILER_ID STREQUAL "Intel" - OR CMAKE_C_COMPILER_ID STREQUAL "SunPro" - OR CMAKE_C_COMPILER_ID STREQUAL "XL") +endif("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|Intel|SunPro|XL)$") if(SRCS) -- cgit v0.12