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.
|
function(IncludeScope_DefineProj)
|
|
include(ExternalProject)
|
|
ExternalProject_Add(MyProj
|
|
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
)
|
|
endfunction()
|
|
|
|
IncludeScope_DefineProj()
|
|
|
|
ExternalProject_Add_Step(MyProj extraStep COMMENT "Foo")
|