CMake/Tests/Assembler/CMakeLists.txt

22 lines
667 B
CMake
Raw Normal View History

2008-03-25 18:27:18 +03:00
cmake_minimum_required (VERSION 2.6)
2007-07-05 17:05:40 +04:00
project(Assembler)
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)$")
2007-07-05 17:05:40 +04:00
if(SRCS)
enable_language(ASM OPTIONAL)
else(SRCS)
2007-07-05 17:05:40 +04:00
message(STATUS "No assembler enabled, using C")
set(SRCS main.c)
endif(SRCS)
2007-07-05 17:05:40 +04:00
add_executable(HelloAsm ${SRCS})