annotate deploy/win32/build-32.bat @ 2265:d33dff02b39b sandbox-notarize

Work on sandboxing (possibly) and using the hardened runtime for notarization. Supply appropriate bundle ID for helpers as well as main application, and request inherited sandbox entitlements. Currently works with sandboxing (apparently) but not yet with the hardened runtime, where we can't load plugins signed by third parties even with the com.apple.security.cs.disable-library-validation entitlement because their team IDs don't match the host. Possibly that exception is supposed to be requested some other way?
author Chris Cannam
date Thu, 25 Apr 2019 16:46:02 +0100
parents 9ba15c8260f6
children 446006ea9099
rev   line source
Chris@2231 1 rem Run this from within the top-level SV dir: deploy\win32\build-32.bat
Chris@1839 2 rem To build from clean, delete the folder build_win32
Chris@1827 3
Chris@1827 4 set STARTPWD=%CD%
Chris@1827 5
Chris@2218 6 set QTDIR=C:\Qt\5.11.3\mingw53_32
Chris@1839 7 if not exist %QTDIR% (
Chris@1839 8 @ echo Could not find 32-bit Qt
Chris@1841 9 @ exit /b 2
Chris@1827 10 )
Chris@1827 11
Chris@1839 12 set ORIGINALPATH=%PATH%
Chris@1839 13 set PATH=%PATH%;C:\Program Files (x86)\SMLNJ\bin;%QTDIR%\bin;C:\Qt\Tools\QtCreator\bin;C:\Qt\Tools\mingw530_32\bin
Chris@1827 14
Chris@1827 15 cd %STARTPWD%
Chris@1827 16
Chris@1827 17 call .\repoint install
Chris@1839 18 if %errorlevel% neq 0 exit /b %errorlevel%
Chris@1827 19
Chris@2045 20 sv-dependency-builds\win32-mingw\bin\capnp -Isv-dependency-builds/win32-mingw/include compile --src-prefix=piper/capnp -osv-dependency-builds/win32-mingw/bin/capnpc-c++:piper-vamp-cpp/vamp-capnp piper/capnp/piper.capnp
Chris@1839 21 if %errorlevel% neq 0 exit /b %errorlevel%
Chris@1827 22
Chris@1827 23 mkdir build_win32
Chris@1827 24 cd build_win32
Chris@1827 25
Chris@1846 26 qmake -spec win32-g++ -r ..\sonic-visualiser.pro
Chris@1839 27 if %errorlevel% neq 0 exit /b %errorlevel%
Chris@1827 28
Chris@1847 29 mingw32-make
Chris@1839 30 if %errorlevel% neq 0 exit /b %errorlevel%
Chris@1827 31
Chris@1827 32 copy .\checker\release\vamp-plugin-load-checker.exe .\release
Chris@1827 33
Chris@1827 34 copy %QTDIR%\bin\Qt5Core.dll .\release
Chris@1827 35 copy %QTDIR%\bin\Qt5Gui.dll .\release
Chris@1827 36 copy %QTDIR%\bin\Qt5Widgets.dll .\release
Chris@1827 37 copy %QTDIR%\bin\Qt5Network.dll .\release
Chris@1827 38 copy %QTDIR%\bin\Qt5Xml.dll .\release
Chris@1827 39 copy %QTDIR%\bin\Qt5Svg.dll .\release
Chris@1852 40 copy %QTDIR%\bin\Qt5Test.dll .\release
Chris@1827 41 copy %QTDIR%\bin\libgcc_s_dw2-1.dll .\release
Chris@1827 42 copy %QTDIR%\bin\"libstdc++-6.dll" .\release
Chris@1827 43 copy %QTDIR%\bin\libwinpthread-1.dll .\release
Chris@1827 44 copy %QTDIR%\plugins\platforms\qminimal.dll .\release
Chris@1827 45 copy %QTDIR%\plugins\platforms\qwindows.dll .\release
Chris@1891 46 copy %QTDIR%\plugins\styles\qwindowsvistastyle.dll .\release
Chris@1827 47
Chris@1982 48 rem some of these expect to be run from the project root
Chris@1982 49 cd ..
Chris@1982 50 build_win32\release\test-svcore-base
Chris@2186 51 if %errorlevel% neq 0 exit /b %errorlevel%
Chris@1982 52 build_win32\release\test-svcore-system
Chris@2186 53 if %errorlevel% neq 0 exit /b %errorlevel%
Chris@1982 54 build_win32\release\test-svcore-data-fileio
Chris@2186 55 if %errorlevel% neq 0 exit /b %errorlevel%
Chris@1982 56 build_win32\release\test-svcore-data-model
Chris@2186 57 if %errorlevel% neq 0 exit /b %errorlevel%
Chris@1852 58
Chris@1839 59 set PATH=%ORIGINALPATH%