mirror of
https://github.com/overte-org/overte.git
synced 2025-04-29 16:02:43 +02:00
16 lines
428 B
CMake
16 lines
428 B
CMake
include(ExternalProject)
|
|
|
|
set(EXTERNAL_NAME serverless-content)
|
|
|
|
ExternalProject_Add(
|
|
${EXTERNAL_NAME}
|
|
URL http://cdn.highfidelity.com/content-sets/serverless-tutorial-RC68.zip
|
|
URL_MD5 a068f74d4045e257cfa7926fe6e38ad5
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
LOG_DOWNLOAD 1
|
|
)
|
|
|
|
# Hide this external target (for IDE users)
|
|
set_target_properties(${EXTERNAL_NAME} PROPERTIES FOLDER "hidden/externals")
|