Skip to content
Permalink
Browse files
Fixed warning message when SIGN_RELEASE_BINARY is not defined
  • Loading branch information
sysprogs committed Jun 22, 2015
1 parent 3724991 commit 6ff78f9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
@@ -19,7 +19,7 @@
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Condition="'$(SIGN_RELEASE_BINARY)' == ''">
<SIGN_RELEASE_BINARY>cmd /c echo SIGN_RELEASE_BINARY not defined. Skipping signing of </SIGN_RELEASE_BINARY>
<SIGN_RELEASE_BINARY>$(ProjectDir)..\dummysign.bat</SIGN_RELEASE_BINARY>
</PropertyGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{AE4C0767-F387-48DD-970E-1D143053516A}</ProjectGuid>
@@ -23,7 +23,7 @@
<RootNamespace>BazisVirtualCDBus</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(SIGN_RELEASE_BINARY)' == ''">
<SIGN_RELEASE_BINARY>cmd /c echo SIGN_RELEASE_BINARY not defined. Skipping signing of </SIGN_RELEASE_BINARY>
<SIGN_RELEASE_BINARY>$(ProjectDir)..\dummysign.bat</SIGN_RELEASE_BINARY>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
@@ -0,0 +1 @@
@echo Warning: SIGN_RELEASE_BINARY not defined. %1 will not be signed.
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(SIGN_RELEASE_BINARY)' == ''">
<SIGN_RELEASE_BINARY>cmd /c echo SIGN_RELEASE_BINARY not defined. Skipping signing of </SIGN_RELEASE_BINARY>
<SIGN_RELEASE_BINARY>$(ProjectDir)..\dummysign.bat</SIGN_RELEASE_BINARY>
</PropertyGroup>
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(SIGN_RELEASE_BINARY)' == ''">
<SIGN_RELEASE_BINARY>cmd /c echo SIGN_RELEASE_BINARY not defined. Skipping signing of </SIGN_RELEASE_BINARY>
<SIGN_RELEASE_BINARY>$(ProjectDir)..\dummysign.bat</SIGN_RELEASE_BINARY>
</PropertyGroup>
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" InitialTargets="CheckEnvironment">
<PropertyGroup Condition="'$(SIGN_RELEASE_BINARY)' == ''">
<SIGN_RELEASE_BINARY>cmd /c echo SIGN_RELEASE_BINARY not defined. Skipping signing of </SIGN_RELEASE_BINARY>
<SIGN_RELEASE_BINARY>$(ProjectDir)..\dummysign.bat</SIGN_RELEASE_BINARY>
</PropertyGroup>
<Target Name="CheckEnvironment">
<Error Condition="(!exists('$(WTL_PATH)\Include'))" Text="The WTL_PATH environment variable is missing or does not point at the WTL 8.0 directory. You get get WTL at http://wtl.sourceforge.net/"/>

0 comments on commit 6ff78f9

Please sign in to comment.