You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
351 B
14 lines
351 B
11 years ago
|
|
||
|
cmake_policy(SET CMP0050 OLD)
|
||
|
|
||
|
add_library(empty empty.cpp)
|
||
|
add_custom_command(
|
||
|
TARGET empty
|
||
|
SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/input.h.in
|
||
|
COMMAND ${CMAKE_COMMAND}
|
||
|
ARGS -E copy ${CMAKE_CURRENT_SOURCE_DIR}/input.h.in
|
||
|
${CMAKE_CURRENT_BINARY_DIR}/input.h
|
||
|
OUTPUTS ${CMAKE_CURRENT_BINARY_DIR}/input.h
|
||
|
DEPENDS ${CMAKE_COMMAND}
|
||
|
)
|