Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Jan 31, 2021
1 parent b954e3e commit 9b3b97e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
15 changes: 7 additions & 8 deletions SandboxiePlus/SandMan/SandMan.rc
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
// Microsoft Visual C++ generated resource script.
//
#include "./resources/resource.h"
#include "resource.h"
/////////////////////////////////////////////////////////////////////////////
// German (Austria) resources

#include "winres.h"

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_DEA)
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN_AUSTRIAN
#pragma code_page(1252)
Expand Down Expand Up @@ -44,6 +42,7 @@ END

#endif // APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
Expand All @@ -68,8 +67,8 @@ FINDER_CURSOR CURSOR "./resources/finder.cur"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,1
PRODUCTVERSION 1,0,0,1
FILEVERSION 0,6,5,0
PRODUCTVERSION 0,6,5,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -86,12 +85,12 @@ BEGIN
BEGIN
//VALUE "CompanyName", "xanasoft.net"
VALUE "FileDescription", "SandBox Manager"
VALUE "FileVersion", "1.0.0.1"
VALUE "FileVersion", "0.6.5.0"
VALUE "InternalName", "SandMan.exe"
VALUE "LegalCopyright", "Copyright (C) 2020 by DavidXanatos"
VALUE "LegalCopyright", "Copyright (C) 2020-2021 by David Xanatos (xanasoft.com)"
VALUE "OriginalFilename", "SandMan.exe"
VALUE "ProductName", "SandBox Manager"
VALUE "ProductVersion", "1.0.0.1"
VALUE "ProductVersion", "0.6.5.0"
END
END
BLOCK "VarFileInfo"
Expand Down
1 change: 1 addition & 0 deletions SandboxiePlus/SandMan/SandMan.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,7 @@
<QtMoc Include="Models\ApiMonModel.h" />
<ClInclude Include="Helpers\FindTool.h" />
<ClInclude Include="Helpers\WinAdmin.h" />
<ClInclude Include="resource.h" />
<ClInclude Include="Resources\resource.h" />
<QtMoc Include="SbiePlusAPI.h" />
<ClInclude Include="stdafx.h" />
Expand Down
3 changes: 3 additions & 0 deletions SandboxiePlus/SandMan/SandMan.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@
<ClInclude Include="Helpers\FindTool.h">
<Filter>Helpers</Filter>
</ClInclude>
<ClInclude Include="resource.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<QtMoc Include="SandMan.h">
Expand Down
9 changes: 4 additions & 5 deletions SandboxiePlus/qmake_plus.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,31 +21,31 @@ cd %~dp0\Build_qtsingleapp_%build_arch%

%qt_path%\bin\qmake.exe %~dp0\QtSingleApp\qtsingleapp\qtsingleapp\qtsingleapp.qc.pro -spec win32-msvc "CONFIG+=qtquickcompiler"
%~dp0..\..\Qt\Tools\QtCreator\bin\jom.exe -f Makefile.Release -j 8
IF %ERRORLEVEL% NEQ 0 goto end
IF %ERRORLEVEL% NEQ 0 goto :eof


mkdir %~dp0\Build_MiscHelpers_%build_arch%
cd %~dp0\Build_MiscHelpers_%build_arch%

%qt_path%\bin\qmake.exe %~dp0\MiscHelpers\MiscHelpers.qc.pro -spec win32-msvc "CONFIG+=qtquickcompiler"
%~dp0..\..\Qt\Tools\QtCreator\bin\jom.exe -f Makefile.Release -j 8
IF %ERRORLEVEL% NEQ 0 goto end
IF %ERRORLEVEL% NEQ 0 goto :eof


mkdir %~dp0\Build_QSbieAPI_%build_arch%
cd %~dp0\Build_QSbieAPI_%build_arch%

%qt_path%\bin\qmake.exe %~dp0\QSbieAPI\QSbieAPI.qc.pro -spec win32-msvc "CONFIG+=qtquickcompiler"
%~dp0..\..\Qt\Tools\QtCreator\bin\jom.exe -f Makefile.Release -j 8
IF %ERRORLEVEL% NEQ 0 goto end
IF %ERRORLEVEL% NEQ 0 goto :eof


mkdir %~dp0\Build_SandMan_%build_arch%
cd %~dp0\Build_SandMan_%build_arch%

%qt_path%\bin\qmake.exe %~dp0\SandMan\SandMan.qc.pro -spec win32-msvc "CONFIG+=qtquickcompiler"
%~dp0..\..\Qt\Tools\QtCreator\bin\jom.exe -f Makefile.Release -j 8
IF %ERRORLEVEL% NEQ 0 goto end
IF %ERRORLEVEL% NEQ 0 goto :eof


cd %~dp0
Expand All @@ -54,4 +54,3 @@ rem dir .\bin
rem dir .\bin\%build_arch%
rem dir .\bin\%build_arch%\Release

:end

0 comments on commit 9b3b97e

Please sign in to comment.