e1c6df392b
Respect INTERFACE library property whitelist. Check that a target has type "UTILITY" before querying other properties.
12 lines
234 B
CMake
12 lines
234 B
CMake
include(ExternalProject)
|
|
|
|
ExternalProject_Add(MyProj
|
|
DOWNLOAD_COMMAND ""
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
)
|
|
|
|
add_library(MyProj-IFace INTERFACE)
|
|
ExternalProject_Add_StepDependencies(MyProj IFace dep)
|