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.
12 lines
320 B
12 lines
320 B
11 years ago
|
|
||
|
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}
|
||
|
)
|