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.
8 lines
328 B
8 lines
328 B
include(Intl-common.cmake)
|
|
set(input "${CMAKE_CURRENT_BINARY_DIR}/${intl}-input.txt")
|
|
set(output "${CMAKE_CURRENT_BINARY_DIR}/${intl}-output.txt")
|
|
file(WRITE "${input}" "${intl}\n")
|
|
add_custom_command(OUTPUT "${output}"
|
|
COMMAND ${CMAKE_COMMAND} -E copy "${input}" "${output}")
|
|
add_custom_target(drive ALL DEPENDS "${output}")
|