Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Schneider <oliver@assarbad.net>2019-11-11 00:48:44 +0300
committerOliver Schneider <oliver@assarbad.net>2019-11-11 00:48:44 +0300
commit3e0b0d4b1f61387b2c1aff8c4501aa216db1aba9 (patch)
tree06d18eb1ce0adbf914ae489f70366a29257540b5
parent58629d9bc6a77685fb2b86445cbb2e02573b2e70 (diff)
Minor fixup.
There remains an issue with the signing. --HG-- branch : WDS-build
-rw-r--r--Premake4.vs8.vcproj6
-rw-r--r--premake4.lua2
-rw-r--r--release.cmd2
3 files changed, 7 insertions, 3 deletions
diff --git a/Premake4.vs8.vcproj b/Premake4.vs8.vcproj
index 0de952e..adc736a 100644
--- a/Premake4.vs8.vcproj
+++ b/Premake4.vs8.vcproj
@@ -271,7 +271,7 @@
/>
<Tool
Name="VCPostBuildEventTool"
- CommandLine="ollisign.cmd -a &quot;$(TargetPath)&quot; &quot;https://bitbucket.org/windirstat/premake-stable&quot; &quot;premake4&quot;"
+ CommandLine="ollisign.cmd -2 &quot;$(TargetPath)&quot; &quot;https://bitbucket.org/windirstat/premake-stable&quot; &quot;premake4&quot;"
/>
</Configuration>
</Configurations>
@@ -485,6 +485,10 @@
RelativePath="src\actions\vstudio\vs2017.lua"
>
</File>
+ <File
+ RelativePath="src\actions\vstudio\vs2019.lua"
+ >
+ </File>
</Filter>
<Filter
Name="xcode"
diff --git a/premake4.lua b/premake4.lua
index 4360dd9..5889bdc 100644
--- a/premake4.lua
+++ b/premake4.lua
@@ -357,7 +357,7 @@ solution "Premake4"
files { "src/host/premake4.rc" }
configuration {"windows", "Publish"}
- postbuildcommands { 'ollisign.cmd -a "$(TargetPath)" "https://bitbucket.org/windirstat/premake-stable" "premake4"' }
+ postbuildcommands { 'ollisign.cmd -2 "$(TargetPath)" "https://bitbucket.org/windirstat/premake-stable" "premake4"' }
defines { "HAVE_HGTIP", "PREMAKE_VERSION=4.4-wds"}
configuration "linux or bsd"
diff --git a/release.cmd b/release.cmd
index 71fc201..efd0fff 100644
--- a/release.cmd
+++ b/release.cmd
@@ -1,7 +1,7 @@
@echo off
@if not "%OS%"=="Windows_NT" @(echo This script requires Windows NT 4.0 or later to run properly! & goto :EOF)
setlocal ENABLEEXTENSIONS & pushd .
-call setvcvars.cmd 8.0
+call "%~dp0setvcvars.cmd" 8.0
if NOT defined VCVER_FRIENDLY echo Unfortunately setvcvars.cmd didn't do its job. Fix the problem and run this script again.&goto :EOF
set HGTIPFILE="%~dp0src\host\hgtip.h"
for /f %%i in ('hg id -i -r tip') do @call :SetVar HG_TIP_ID "%%i"