mirror of
https://github.com/reactos/CMake.git
synced 2025-02-02 10:02:44 +00:00
4139a734fa
...have to find out how to generate assembler with icl.exe Alex
24 lines
891 B
CMake
24 lines
891 B
CMake
cmake_minimum_required (VERSION 2.6)
|
|
project(Assembler)
|
|
|
|
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|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|SunPro|XL)$") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "Intel" AND UNIX))
|
|
endif("${CMAKE_GENERATOR}" MATCHES "Makefile")
|
|
|
|
|
|
if(SRCS)
|
|
enable_language(ASM OPTIONAL)
|
|
else(SRCS)
|
|
message(STATUS "No assembler enabled, using C")
|
|
set(SRCS main.c)
|
|
endif(SRCS)
|
|
|
|
add_executable(HelloAsm ${SRCS})
|