diff options
author | Brad King <brad.king@kitware.com> | 2011-03-04 14:08:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-03-04 14:08:18 (GMT) |
commit | 80f6a344fc7cba25419e27b078a52d1c41280b02 (patch) | |
tree | 0d5f268efcc89fafd8520229e6d9e7615504e36a /Tests/Assembler/CMakeLists.txt | |
parent | 1dafa7498f0dced8522b8244dd8dbf8176f0fe5b (diff) | |
download | CMake-80f6a344fc7cba25419e27b078a52d1c41280b02.zip CMake-80f6a344fc7cba25419e27b078a52d1c41280b02.tar.gz CMake-80f6a344fc7cba25419e27b078a52d1c41280b02.tar.bz2 |
Teach Assembler test to generate main.s at build time
Use a custom command to generate the assembly source file at build time.
Also set CMAKE_VERBOSE_MAKEFILE so the test output contains all the
build rules. These two changes will show the entire .c -> .s -> .o and
final link commands in the test output.
Diffstat (limited to 'Tests/Assembler/CMakeLists.txt')
-rw-r--r-- | Tests/Assembler/CMakeLists.txt | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Tests/Assembler/CMakeLists.txt b/Tests/Assembler/CMakeLists.txt index ce42afb..6071181 100644 --- a/Tests/Assembler/CMakeLists.txt +++ b/Tests/Assembler/CMakeLists.txt @@ -1,5 +1,7 @@ cmake_minimum_required (VERSION 2.6) project(Assembler) +message("CTEST_FULL_OUTPUT ") +set(CMAKE_VERBOSE_MAKEFILE 1) set(SRCS) @@ -9,8 +11,13 @@ if("${CMAKE_GENERATOR}" MATCHES "Makefile") if(("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|SunPro|XL)$") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "Intel" AND UNIX)) set(C_FLAGS "${CMAKE_C_FLAGS}") separate_arguments(C_FLAGS) - execute_process(COMMAND ${CMAKE_C_COMPILER} ${C_FLAGS} -S "${CMAKE_CURRENT_SOURCE_DIR}/main.c" -o "${CMAKE_CURRENT_BINARY_DIR}/main.s") - set(SRCS "${CMAKE_CURRENT_BINARY_DIR}/main.s") + set(SRCS main.s) + add_custom_command( + OUTPUT main.s + COMMAND ${CMAKE_C_COMPILER} ${C_FLAGS} -S ${CMAKE_CURRENT_SOURCE_DIR}/main.c -o main.s + DEPENDS main.c + VERBATIM + ) endif(("${CMAKE_C_COMPILER_ID}" MATCHES "^(GNU|HP|SunPro|XL)$") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "Intel" AND UNIX)) endif("${CMAKE_GENERATOR}" MATCHES "Makefile") |