Browse Source

Switch scripts to use the new windows installer

Tobias Hieta 9 years ago
parent
commit
6ea2b40e94
2 changed files with 1 additions and 11 deletions
  1. 0 8
      CMakeModules/DependencyConfiguration.cmake
  2. 1 3
      scripts/build-windows.bat

+ 0 - 8
CMakeModules/DependencyConfiguration.cmake

@@ -52,11 +52,3 @@ endif(IS_DIRECTORY ${DEPENDENCY_ROOT})
 
 find_package(Threads REQUIRED)
 find_package(PythonInterp REQUIRED)
-
-# on windows we need to download the updater binary seperately
-if(WIN32)
-  file(DOWNLOAD https://nightlies.plex.tv/directdl/plex-dependencies/konvergo-qt/updater.exe ${CMAKE_BINARY_DIR}/updater.exe
-       SHOW_PROGRESS
-       EXPECTED_HASH SHA1=d3b4f70d6542fa42c8edd2b9b93fd0916bf20f07
-       TLS_VERIFY OFF)
-endif(WIN32)

+ 1 - 3
scripts/build-windows.bat

@@ -3,6 +3,4 @@ cd %BUILD_DIR%  || exit /b
 %CMAKE_DIR%\cmake -DCRASHDUMP_SECRET=%CD_SECRET% -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=output -DDEPENDENCY_UNTAR_DIR=c:\jenkins\pmp-deps .. -G Ninja -DCODE_SIGN=ON || exit /b
 
 ninja || exit /b
-ninja package || exit /b
-
-..\scripts\WindowsSign.cmd PlexMediaPlayer-*.exe
+ninja windows_package || exit /b