Added build scrip + added "x64" configuration.
This commit is contained in:
parent
a5dc0cee0d
commit
80b3029de1
@ -8,13 +8,19 @@ EndProject
|
|||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Win32 = Debug|Win32
|
Debug|Win32 = Debug|Win32
|
||||||
|
Debug|x64 = Debug|x64
|
||||||
Release|Win32 = Release|Win32
|
Release|Win32 = Release|Win32
|
||||||
|
Release|x64 = Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Debug|Win32.ActiveCfg = Debug|Win32
|
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||||
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Debug|Win32.Build.0 = Debug|Win32
|
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Debug|Win32.Build.0 = Debug|Win32
|
||||||
|
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
|
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Debug|x64.Build.0 = Debug|x64
|
||||||
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Release|Win32.ActiveCfg = Release|Win32
|
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Release|Win32.ActiveCfg = Release|Win32
|
||||||
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Release|Win32.Build.0 = Release|Win32
|
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Release|Win32.Build.0 = Release|Win32
|
||||||
|
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Release|x64.ActiveCfg = Release|x64
|
||||||
|
{7BB6FBD8-4531-4CBB-B9EE-D440ACD7BCEC}.Release|x64.Build.0 = Release|x64
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
@ -5,10 +5,18 @@
|
|||||||
<Configuration>Debug</Configuration>
|
<Configuration>Debug</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
<ProjectConfiguration Include="Release|Win32">
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
<Configuration>Release</Configuration>
|
<Configuration>Release</Configuration>
|
||||||
<Platform>Win32</Platform>
|
<Platform>Win32</Platform>
|
||||||
</ProjectConfiguration>
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="src\TimedExec.cpp" />
|
<ClCompile Include="src\TimedExec.cpp" />
|
||||||
@ -25,6 +33,12 @@
|
|||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
<PlatformToolset>v120_xp</PlatformToolset>
|
<PlatformToolset>v120_xp</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
<PlatformToolset>v120_xp</PlatformToolset>
|
||||||
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<UseDebugLibraries>false</UseDebugLibraries>
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
@ -32,27 +46,64 @@
|
|||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
<PlatformToolset>v120_xp</PlatformToolset>
|
<PlatformToolset>v120_xp</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
<PlatformToolset>v120_xp</PlatformToolset>
|
||||||
|
</PropertyGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
<ImportGroup Label="ExtensionSettings">
|
<ImportGroup Label="ExtensionSettings">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
|
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
<LinkIncremental>true</LinkIncremental>
|
<LinkIncremental>true</LinkIncremental>
|
||||||
<OutDir>$(SolutionDir)\bin\$(Configuration)\</OutDir>
|
<OutDir>$(SolutionDir)\bin\$(Platform)\$(Configuration)\</OutDir>
|
||||||
<IntDir>$(SolutionDir)\obj\$(Configuration)\</IntDir>
|
<IntDir>$(SolutionDir)\obj\$(Platform)\$(Configuration)\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
<OutDir>$(SolutionDir)\bin\$(Platform)\$(Configuration)\</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)\obj\$(Platform)\$(Configuration)\</IntDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
<LinkIncremental>false</LinkIncremental>
|
<LinkIncremental>false</LinkIncremental>
|
||||||
<OutDir>$(SolutionDir)\bin\$(Configuration)\</OutDir>
|
<OutDir>$(SolutionDir)\bin\$(Platform)\$(Configuration)\</OutDir>
|
||||||
<IntDir>$(SolutionDir)\obj\$(Configuration)\</IntDir>
|
<IntDir>$(SolutionDir)\obj\$(Platform)\$(Configuration)\</IntDir>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
<OutDir>$(SolutionDir)\bin\$(Platform)\$(Configuration)\</OutDir>
|
||||||
|
<IntDir>$(SolutionDir)\obj\$(Platform)\$(Configuration)\</IntDir>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<Optimization>Disabled</Optimization>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<PrecompiledHeader>
|
<PrecompiledHeader>
|
||||||
</PrecompiledHeader>
|
</PrecompiledHeader>
|
||||||
@ -66,6 +117,34 @@
|
|||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<PrecompiledHeader>
|
||||||
|
</PrecompiledHeader>
|
||||||
|
<Optimization>Full</Optimization>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
|
||||||
|
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
|
||||||
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||||
|
<EnableEnhancedInstructionSet>NoExtensions</EnableEnhancedInstructionSet>
|
||||||
|
<CreateHotpatchableImage>false</CreateHotpatchableImage>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||||
|
<FloatingPointModel>Fast</FloatingPointModel>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>false</GenerateDebugInformation>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<LinkTimeCodeGeneration>UseLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||||
|
<AdditionalDependencies>$(SolutionDir)../EncodePointerLib/Release/EncodePointer.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
||||||
|
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<WarningLevel>Level3</WarningLevel>
|
<WarningLevel>Level3</WarningLevel>
|
||||||
<PrecompiledHeader>
|
<PrecompiledHeader>
|
||||||
@ -81,6 +160,7 @@
|
|||||||
<CreateHotpatchableImage>false</CreateHotpatchableImage>
|
<CreateHotpatchableImage>false</CreateHotpatchableImage>
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
<BufferSecurityCheck>false</BufferSecurityCheck>
|
<BufferSecurityCheck>false</BufferSecurityCheck>
|
||||||
|
<FloatingPointModel>Fast</FloatingPointModel>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<Link>
|
<Link>
|
||||||
<SubSystem>Console</SubSystem>
|
<SubSystem>Console</SubSystem>
|
||||||
|
BIN
etc/date.exe
Normal file
BIN
etc/date.exe
Normal file
Binary file not shown.
BIN
etc/head.exe
Normal file
BIN
etc/head.exe
Normal file
Binary file not shown.
BIN
etc/sed.exe
Normal file
BIN
etc/sed.exe
Normal file
Binary file not shown.
BIN
etc/zip.exe
Normal file
BIN
etc/zip.exe
Normal file
Binary file not shown.
@ -24,6 +24,7 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <tchar.h>
|
#include <tchar.h>
|
||||||
|
#include <io.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
||||||
#define NOMINMAX 1
|
#define NOMINMAX 1
|
||||||
@ -144,7 +145,7 @@ static int initializeCommandLine(tstring &commandLine, tstring &programFile)
|
|||||||
programFile.clear();
|
programFile.clear();
|
||||||
|
|
||||||
int nArgs = 0;
|
int nArgs = 0;
|
||||||
TCHAR **szArglist = CommandLineToArgvW(GetCommandLine(), &nArgs);
|
TCHAR **szArglist = CommandLineToArgvW(GetCommandLineW(), &nArgs);
|
||||||
|
|
||||||
if((szArglist == NULL) || (nArgs < 2))
|
if((szArglist == NULL) || (nArgs < 2))
|
||||||
{
|
{
|
||||||
@ -256,7 +257,7 @@ static LONG WINAPI crashHandlerRoutine(struct _EXCEPTION_POINTERS *ExceptionInfo
|
|||||||
{
|
{
|
||||||
static const char *const message = "\n\nGURU MEDITATION: UNHANDELED SYSTEM EXCEPTION !!!\n\n";
|
static const char *const message = "\n\nGURU MEDITATION: UNHANDELED SYSTEM EXCEPTION !!!\n\n";
|
||||||
DWORD bytesWritten;
|
DWORD bytesWritten;
|
||||||
WriteFile(GetStdHandle(STD_ERROR_HANDLE), message, strlen(message), &bytesWritten, NULL);
|
WriteFile(GetStdHandle(STD_ERROR_HANDLE), message, lstrlenA(message), &bytesWritten, NULL);
|
||||||
TerminateProcess(GetCurrentProcess(), UINT(-1));
|
TerminateProcess(GetCurrentProcess(), UINT(-1));
|
||||||
return EXCEPTION_EXECUTE_HANDLER;
|
return EXCEPTION_EXECUTE_HANDLER;
|
||||||
}
|
}
|
||||||
|
169
z_build.bat
Normal file
169
z_build.bat
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
@echo off
|
||||||
|
setlocal enabledelayedexpansion
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Set Paths
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
set "MSVC_PATH=C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC"
|
||||||
|
set "UPX3_PATH=C:\Program Files (x86)\UPX"
|
||||||
|
set "PDOC_PATH=C:\Program Files (x86)\Pandoc"
|
||||||
|
|
||||||
|
REM ###############################################
|
||||||
|
REM # DO NOT MODIFY ANY LINES BELOW THIS LINE !!! #
|
||||||
|
REM ###############################################
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Setup environment
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
call "%MSVC_PATH%\vcvarsall.bat" x86
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Check environment
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
if "%VCINSTALLDIR%"=="" (
|
||||||
|
echo %%VCINSTALLDIR%% not specified. Please check your MSVC_PATH var^^!
|
||||||
|
goto BuildError
|
||||||
|
)
|
||||||
|
if not exist "%VCINSTALLDIR%\bin\cl.exe" (
|
||||||
|
echo C++ compiler binary not found. Please check your MSVC_PATH var^^!
|
||||||
|
goto BuildError
|
||||||
|
)
|
||||||
|
if not exist "%UPX3_PATH%\upx.exe" (
|
||||||
|
echo UPX binary could not be found. Please check your UPX3_PATH var^^!
|
||||||
|
goto BuildError
|
||||||
|
)
|
||||||
|
if not exist "%PDOC_PATH%\pandoc.exe" (
|
||||||
|
echo Pandoc binary could not be found. Please check your PDOC_PATH var^^!
|
||||||
|
goto BuildError
|
||||||
|
)
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Get current date and time (in ISO format)
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
set "ISO_DATE="
|
||||||
|
set "ISO_TIME="
|
||||||
|
if not exist "%~dp0\etc\date.exe" goto BuildError
|
||||||
|
for /F "tokens=1,2 delims=:" %%a in ('"%~dp0\etc\date.exe" +ISODATE:%%Y-%%m-%%d') do (
|
||||||
|
if "%%a"=="ISODATE" set "ISO_DATE=%%b"
|
||||||
|
)
|
||||||
|
for /F "tokens=1,2,3,4 delims=:" %%a in ('"%~dp0\etc\date.exe" +ISOTIME:%%T') do (
|
||||||
|
if "%%a"=="ISOTIME" set "ISO_TIME=%%b:%%c:%%d"
|
||||||
|
)
|
||||||
|
if "%ISO_DATE%"=="" goto BuildError
|
||||||
|
if "%ISO_TIME%"=="" goto BuildError
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Clean Binaries
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
for /d %%d in (%~dp0\bin\*) do (rmdir /S /Q "%%~d")
|
||||||
|
for /d %%d in (%~dp0\obj\*) do (rmdir /S /Q "%%~d")
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Build the binaries
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
for %%p in (Win32, x64) do (
|
||||||
|
echo ---------------------------------------------------------------------
|
||||||
|
echo BEGIN BUILD [%%p/Release]
|
||||||
|
echo ---------------------------------------------------------------------
|
||||||
|
|
||||||
|
MSBuild.exe /property:Platform=%%p /property:Configuration=Release /target:clean "%~dp0\TimedExec.sln"
|
||||||
|
if not "!ERRORLEVEL!"=="0" goto BuildError
|
||||||
|
MSBuild.exe /property:Platform=%%p /property:Configuration=Release /target:rebuild "%~dp0\TimedExec.sln"
|
||||||
|
if not "!ERRORLEVEL!"=="0" goto BuildError
|
||||||
|
MSBuild.exe /property:Platform=%%p /property:Configuration=Release /target:build "%~dp0\TimedExec.sln"
|
||||||
|
if not "!ERRORLEVEL!"=="0" goto BuildError
|
||||||
|
)
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Copy program files
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
set "PACK_PATH=%TMP%\~%RANDOM%%RANDOM%.tmp"
|
||||||
|
mkdir "%PACK_PATH%"
|
||||||
|
|
||||||
|
echo ---------------------------------------------------------------------
|
||||||
|
echo BEGIN PACKAGING [Release]
|
||||||
|
echo ---------------------------------------------------------------------
|
||||||
|
|
||||||
|
mkdir "%PACK_PATH%"
|
||||||
|
mkdir "%PACK_PATH%\x64"
|
||||||
|
|
||||||
|
copy "%~dp0\bin\Win32\Release\*.exe" "%PACK_PATH%"
|
||||||
|
copy "%~dp0\bin\x64\.\Release\*.exe" "%PACK_PATH%\x64"
|
||||||
|
copy "%~dp0\LICENSE.html" "%PACK_PATH%"
|
||||||
|
|
||||||
|
"%PDOC_PATH%\pandoc.exe" --from markdown_github+header_attributes --to html5 --standalone -H "%~dp0\img\Style.inc" "%~dp0\README.md" --output "%PACK_PATH%\README.html"
|
||||||
|
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Compress
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
"%UPX3_PATH%\upx.exe" --best "%PACK_PATH%\*.exe"
|
||||||
|
"%UPX3_PATH%\upx.exe" --best "%PACK_PATH%\x64\*.exe"
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Create version tag
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
echo TimedExec > "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo Copyright (C) 2014 LoRd_MuldeR ^<MuldeR2@GMX.de^> >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo. >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo Built on %ISO_DATE%, at %ISO_TIME% >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo. >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
cl 2>&1 | "%~dp0\etc\head.exe" -n1 | "%~dp0\etc\sed.exe" -e "/^$/d" -e "s/^/Compiler version: /" >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
ver 2>&1 | "%~dp0\etc\sed.exe" -e "/^$/d" -e "s/^/Build platform: /" >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo. >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo This program is free software; you can redistribute it and/or >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo modify it under the terms of the GNU General Public License >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo as published by the Free Software Foundation; either version 2 >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo of the License, or (at your option) any later version. >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo. >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo This program is distributed in the hope that it will be useful, >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo but WITHOUT ANY WARRANTY; without even the implied warranty of >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
echo GNU General Public License for more details. >> "%PACK_PATH%\BUILD_TAG"
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Attributes
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
attrib +R "%PACK_PATH%\*"
|
||||||
|
attrib +R "%PACK_PATH%\x64\*"
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Generate outfile name
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
mkdir "%~dp0\out" 2> NUL
|
||||||
|
set "OUT_NAME=TimedExec.%ISO_DATE%"
|
||||||
|
:CheckOutName
|
||||||
|
if exist "%~dp0\out\%OUT_NAME%.zip" (
|
||||||
|
set "OUT_NAME=%OUT_NAME%.new"
|
||||||
|
goto CheckOutName
|
||||||
|
)
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // Build the package
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
pushd "%PACK_PATH%"
|
||||||
|
"%~dp0\etc\zip.exe" -9 -r -z "%~dp0\out\%OUT_NAME%.zip" "*.*" < "%PACK_PATH%\BUILD_TAG"
|
||||||
|
popd
|
||||||
|
attrib +R "%~dp0\out\%OUT_NAME%.zip"
|
||||||
|
|
||||||
|
|
||||||
|
REM Clean up!
|
||||||
|
rmdir /Q /S "%PACK_PATH%"
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // COMPLETE
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
echo.
|
||||||
|
echo Build completed.
|
||||||
|
echo.
|
||||||
|
pause
|
||||||
|
goto:eof
|
||||||
|
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
REM // FAILED
|
||||||
|
REM ///////////////////////////////////////////////////////////////////////////
|
||||||
|
:BuildError
|
||||||
|
echo.
|
||||||
|
echo Build has failed ^^!^^!^^!
|
||||||
|
echo.
|
||||||
|
pause
|
Loading…
Reference in New Issue
Block a user