-
-
Notifications
You must be signed in to change notification settings - Fork 334
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New way of downloading web-client deps!
- Loading branch information
Showing
8 changed files
with
84 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
include(FetchDependencies) | ||
|
||
option(WEB_CLIENT_TV_OLD "" OFF) | ||
option(WEB_CLIENT_DISABLE_DESKTOP "" OFF) | ||
|
||
set(WEB_CLIENT_BUILD_NUMBER 20) | ||
set(DESKTOP_VERSION 3.34.1-b51c37a) | ||
set(TVOLD_VERSION 3.13.3-5401c32) | ||
set(TV_VERSION 3.33.4-81b752aa) | ||
|
||
if(WEB_CLIENT_TV_OLD) | ||
set(TV_VERSION ${TVOLD_VERSION}) | ||
endif() | ||
|
||
if(NOT WEB_CLIENT_DISABLE_DESKTOP) | ||
download_deps("web-client-desktop" | ||
BUILD_NUMBER ${WEB_CLIENT_BUILD_NUMBER} | ||
VARIANT ${DESKTOP_VERSION} | ||
NO_HASH_FILE | ||
ARCHSTR "universal" | ||
BASE_URL "https://artifacts.plex.tv/web-client-pmp/${WEB_CLIENT_BUILD_NUMBER}" | ||
DIRECTORY WEB_DESKTOP_DIR | ||
) | ||
endif() | ||
|
||
download_deps("web-client-tv" | ||
BUILD_NUMBER ${WEB_CLIENT_BUILD_NUMBER} | ||
VARIANT ${TV_VERSION} | ||
NO_HASH_FILE | ||
ARCHSTR "universal" | ||
BASE_URL "https://artifacts.plex.tv/web-client-pmp/${WEB_CLIENT_BUILD_NUMBER}" | ||
DIRECTORY WEB_TV_DIR | ||
) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters