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
266 B
15 lines
266 B
3 years ago
|
include(ExternalProject)
|
||
|
cmake_policy(SET CMP0114 NEW)
|
||
|
|
||
|
ExternalProject_Add(proj
|
||
|
SOURCE_DIR "."
|
||
|
DOWNLOAD_COMMAND ""
|
||
|
CONFIGURE_COMMAND ""
|
||
|
BUILD_COMMAND ""
|
||
|
INSTALL_COMMAND ""
|
||
|
)
|
||
|
ExternalProject_Add_Step(proj custom
|
||
|
DEPENDEES configure
|
||
|
INDEPENDENT 1
|
||
|
)
|