Use a regexp instead a lot of ORs for checking the compiler ID

Alex
This commit is contained in:
Alex Neundorf 2011-02-24 20:56:53 +01:00
parent cf8809203a
commit 861447097c
1 changed files with 3 additions and 11 deletions

View File

@ -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)