-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
C.D. MacEachern
committed
Feb 26, 2021
1 parent
0c9f814
commit d19e020
Showing
6 changed files
with
41 additions
and
30 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
installer/packages/com.barkersoftware.openroll/meta/package.xml
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Windows notes: | ||
|
||
- Run windows-windeployqt.bat file and then manually or use a script | ||
to transfer over the files listing in windows-filelist-for-release-package.txt | ||
into a new directory and zip it up to 'openroll-2.x.x.zip' | ||
|
||
|
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,16 @@ | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\audio | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\bearer | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\iconengines | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\imageformats | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\mediaservice | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\platforms | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\playlistformats | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\styles | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\translations | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\*.dll | ||
C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release\openroll.exe | ||
C:\Projects\openroll\CHANGELOG | ||
C:\Projects\openroll\gpl.txt | ||
C:\Projects\openroll\lgpl.txt | ||
C:\Projects\openroll\LICENSES.txt | ||
C:\Projects\openroll\AUTHORS |
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,18 @@ | ||
@echo off | ||
echo Creating installer from release build... | ||
echo Setting correct paths...make sure System Environment Variable QTDIR is set, | ||
echo e.g., C:\Qt\5.15.2\mingw81_64, and add QTDIR\bin and QTDIR\lib to System PATH. | ||
set PATH=%QTDIR%;%QTDIR%\..\..\Tools\mingw810_64\bin;C:\Program Files\7-Zip;%PATH% | ||
echo Changing to release build folder... | ||
cd /D C:\Projects\openroll\build\build-openroll-Desktop_Qt_5_15_2_MinGW_64_bit-Release | ||
echo Running windeployqt on executable, this brings in all necessary .dll files etc. | ||
windeployqt openroll.exe | ||
:: echo Now we need to copy over our extra shipped stuff (license files, etc.) | ||
::echo Creating .7z file of everything | ||
:: "C:\Program Files\7-zip\7z.exe" a -r openroll.7z * | ||
:: old installer stuff | ||
:: echo Moving .7z to git repository | ||
:: MOVE /Y openroll.7z C:\Users\cmaceachern\projects\Qt\openroll\openroll\installer\packages\com.barkersoftware.openroll\data\ | ||
:: cd /D C:\Users\cmaceachern\projects\Qt\openroll\openroll\installer\ | ||
:: echo Running binarycreator.exe to build openroll installer | ||
:: C:\Qt5\Tools\QtInstallerFramework\3.1\bin\binarycreator.exe -c config\config.xml -p packages openroll-installer.exe |