Don't have the Web app as a submodule

This commit is contained in:
David Rowe 2021-12-10 08:12:28 +13:00
parent b7734e32d0
commit 9a048c643a
3 changed files with 8 additions and 4 deletions

3
.gitmodules vendored
View file

@ -1,3 +0,0 @@
[submodule "vircadia-web"]
path = vircadia-web
url = ../vircadia-web.git

View file

@ -349,12 +349,20 @@ GroupSources("scripts")
GroupSources("unpublishedScripts")
unset(JS_SRC)
# Include Vircadia Web app files if cloned into a subdirectory.
file(GLOB_RECURSE WEB_APP_SRC vircadia-web/*.*)
list(FILTER WEB_APP_SRC EXCLUDE REGEX "vircadia-web/(dist|node_modules|public)/*" )
add_custom_target(vircadia-web SOURCES ${WEB_APP_SRC})
GroupSources("vircadia-web")
unset(WEB_APP_SRC)
# Include Vircadia Web SDK files if cloned into a subdirectory.
file(GLOB_RECURSE WEB_SDK_SRC vircadia-web-sdk/*.*)
list(FILTER WEB_SDK_SRC EXCLUDE REGEX "vircadia-web-sdk/(dist|node_modules|public)/*" )
add_custom_target(vircadia-web-sdk SOURCES ${WEB_SDK_SRC})
GroupSources("vircadia-web-sdk")
unset(WEB_SDK_SRC)
set_packaging_parameters()
# Locate the required Qt build on the filesystem

@ -1 +0,0 @@
Subproject commit 0afaa769d46683d461c9288aa31468f64cba0233