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.
15 lines
426 B
15 lines
426 B
10 years ago
|
cmake_minimum_required(VERSION 3.0)
|
||
|
project(BuildDependsExternal NONE)
|
||
|
if(NOT DEFINED external_in)
|
||
|
message(FATAL_ERROR "Define external_in")
|
||
|
endif()
|
||
|
if(NOT DEFINED external_out)
|
||
|
message(FATAL_ERROR "Define external_out")
|
||
|
endif()
|
||
|
add_custom_command(
|
||
|
OUTPUT ${external_out}
|
||
|
COMMAND ${CMAKE_COMMAND} -E copy ${external_in} ${external_out}
|
||
|
DEPENDS ${external_in}
|
||
|
)
|
||
|
add_custom_target(drive ALL DEPENDS ${external_out})
|