mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-26 08:08:24 -05:00
Only try assembler support for Makefile-based generators
Alex
This commit is contained in:
@@ -5,10 +5,12 @@ set(SRCS)
|
|||||||
|
|
||||||
# (at least) the following toolchains can process assembler files directly
|
# (at least) the following toolchains can process assembler files directly
|
||||||
# and also generate assembler files from C:
|
# and also generate assembler files from C:
|
||||||
if("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|Intel|SunPro|XL)$")
|
if("${CMAKE_GENERATOR}" MATCHES "Makefile")
|
||||||
execute_process(COMMAND ${CMAKE_C_COMPILER} -S "${CMAKE_CURRENT_SOURCE_DIR}/main.c" -o "${CMAKE_CURRENT_BINARY_DIR}/main.s")
|
if("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|Intel|SunPro|XL)$")
|
||||||
set(SRCS "${CMAKE_CURRENT_BINARY_DIR}/main.s")
|
execute_process(COMMAND ${CMAKE_C_COMPILER} -S "${CMAKE_CURRENT_SOURCE_DIR}/main.c" -o "${CMAKE_CURRENT_BINARY_DIR}/main.s")
|
||||||
endif("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|Intel|SunPro|XL)$")
|
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)
|
if(SRCS)
|
||||||
|
|||||||
Reference in New Issue
Block a user