From 43084c4ce25ab7932180c0c79f34af7720e4db28 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Wed, 1 May 2019 08:54:46 -0700 Subject: [PATCH] Add Use Legacy Graphics.reg to change graphics engine when OSCAR does not run. Add buildall.bat. Update build documentation. --- .gitignore | 3 ++ Building/Windows/BUILD-WIN.md | 5 ++ Building/Windows/Use Legacy Graphics.reg | Bin 0 -> 228 bytes Building/Windows/buildall.bat | 59 +++++++++++++++++++++++ Building/Windows/deploy.bat | 4 +- 5 files changed, 70 insertions(+), 1 deletion(-) create mode 100644 Building/Windows/Use Legacy Graphics.reg create mode 100644 Building/Windows/buildall.bat diff --git a/.gitignore b/.gitignore index b1d79c71..fb861c4b 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,6 @@ Makefile* *.qmlproject.user *.qmlproject.user.* +#Remnants of editors etc. +.vscode +*.bak diff --git a/Building/Windows/BUILD-WIN.md b/Building/Windows/BUILD-WIN.md index b3cb811a..a48cc617 100644 --- a/Building/Windows/BUILD-WIN.md +++ b/Building/Windows/BUILD-WIN.md @@ -150,6 +150,11 @@ Now you should be able to build the OSCAR project from the QT Build menu. To make 32-bit or 64-bit builds, just make sure the correct Build item is selected in the Build & Run section on the left. +If you prefer to build from the command line and not use QT Creator, a +batch script buildall.bat will build and create installers for both 32-bit +and 64-bit versions of Windows. This script has some hard-coded paths, so +will need to be modified for your system configuration. + **The Deploy.BAT file** The deployment batch file creates two folders inside the shadow build folder: diff --git a/Building/Windows/Use Legacy Graphics.reg b/Building/Windows/Use Legacy Graphics.reg new file mode 100644 index 0000000000000000000000000000000000000000..557a8347840842ea531775993eb619c6e1845c80 GIT binary patch literal 228 zcmY+8%L>9U6hzNj@E=M)KtymOxRBxl1chjQpi&Br(uE1MLh$F+F|Onik~4EN%=@*c z#!=x3v?LfTH)$;o8lF<7a%+(nC+y@ma%-^@59!g@bm_!%V!={>jud3%$}^%BTXD`t zZ^K!)=c>#=sWdBPEiGdrx6rPYe*aT1F+F9@jDu2KZ0WR_GFHP7`&Eo$n{T7v4EO+j CfFqmake.log 2>&1 && %qtpath%/Tools/mingw730_%1/bin/mingw32-make.exe qmake_all >>qmake.log 2>&1 +mingw32-make.exe -j8 >make.log 2>&1 || goto :makefail + +call ..\Building\Windows\deploy.bat + +timer /s /nologo +echo === MAKE %1 %2 SUCCESSFUL === +cd %savedir% +endlocal +exit /b + +:makefail +endlocal +timer /s /nologo +echo *** MAKE %1 %2 FAILED *** +pause +exit /b \ No newline at end of file diff --git a/Building/Windows/deploy.bat b/Building/Windows/deploy.bat index cc7f94fc..4a24cafd 100644 --- a/Building/Windows/deploy.bat +++ b/Building/Windows/deploy.bat @@ -12,7 +12,7 @@ ::: Inno Setup - http://www.jrsoftware.org/isinfo.php, installed to default Program Files (x86) location ::: gawk - somewhere in the PATH or in Git for Windows installed in its default lolcation ::: -::: Deploy.bat resides in .../OSCAR-code/Installers/Windows, along with +::: Deploy.bat resides in .../OSCAR-code/Nuilding/Windows, along with ::: buildinstall.iss -- script for Inno Setup to create installer ::: getBuildInfo.awk -- gawk script for extracting version fields from various files ::: setup.ico -- Icon to be used for the installer. @@ -44,6 +44,7 @@ echo shadowBuildDir is %shadowBuildDir% copy %toolDir%buildInstall.iss %shadowBuildDir% || exit 45 copy %toolDir%setup.ico %shadowBuildDir% || exit 46 +copy %toolDir%use*.reg %shadowBuildDir% || exit 47 ::: ::: If gawk.exe is in the PATH, use it. If not, add Git mingw tools (awk) to path. They cannot @@ -69,6 +70,7 @@ if exist %shadowBuildDir%\Release\*.* rmdir /s /q %shadowBuildDir%\Release mkdir %shadowBuildDir%\Release cd %shadowBuildDir%\Release copy %shadowBuildDir%\oscar.exe . || exit 71 +copy %shadowBuildDir%\use*.reg . || exit 72 ::: Now in Release subdirectory ::: If QT created a help directory, copy it. But it might not have if "helpless" option was set