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.
10 lines
328 B
10 lines
328 B
2 years ago
|
include(ExternalProject)
|
||
|
ExternalProject_Add(proj1
|
||
|
DOWNLOAD_COMMAND ""
|
||
|
SOURCE_DIR ""
|
||
|
CONFIGURE_COMMAND ${CMAKE_COMMAND} -E echo "Configure proj1"
|
||
|
BUILD_COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/out-$<CONFIG>.txt
|
||
|
BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/out-$<CONFIG>.txt
|
||
|
INSTALL_COMMAND ""
|
||
|
)
|