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