Skip to content

Commit

Permalink
Fixed warning message when SIGN_RELEASE_BINARY is not defined
Browse files Browse the repository at this point in the history
  • 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.
2 changes: 1 addition & 1 deletion BazisPortableCDBus/BazisPortableCDBus.vcxproj
Expand Up @@ -19,7 +19,7 @@
</ProjectConfiguration> </ProjectConfiguration>
</ItemGroup> </ItemGroup>
<PropertyGroup Condition="'$(SIGN_RELEASE_BINARY)' == ''"> <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>
<PropertyGroup Label="Globals"> <PropertyGroup Label="Globals">
<ProjectGuid>{AE4C0767-F387-48DD-970E-1D143053516A}</ProjectGuid> <ProjectGuid>{AE4C0767-F387-48DD-970E-1D143053516A}</ProjectGuid>
Expand Down
2 changes: 1 addition & 1 deletion BazisVirtualCDBus/BazisVirtualCDBus.vcxproj
Expand Up @@ -23,7 +23,7 @@
<RootNamespace>BazisVirtualCDBus</RootNamespace> <RootNamespace>BazisVirtualCDBus</RootNamespace>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(SIGN_RELEASE_BINARY)' == ''"> <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>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
Expand Down
1 change: 1 addition & 0 deletions DummySign.bat
@@ -0,0 +1 @@
@echo Warning: SIGN_RELEASE_BINARY not defined. %1 will not be signed.
2 changes: 1 addition & 1 deletion Uninstall/uninstall.vcxproj
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(SIGN_RELEASE_BINARY)' == ''"> <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>
<ItemGroup Label="ProjectConfigurations"> <ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32"> <ProjectConfiguration Include="Debug|Win32">
Expand Down
2 changes: 1 addition & 1 deletion VirtualDriveManager/VirtualDriveManager.vcxproj
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(SIGN_RELEASE_BINARY)' == ''"> <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>
<ItemGroup Label="ProjectConfigurations"> <ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32"> <ProjectConfiguration Include="Debug|Win32">
Expand Down
2 changes: 1 addition & 1 deletion vmnt/vmnt.vcxproj
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" InitialTargets="CheckEnvironment"> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" InitialTargets="CheckEnvironment">
<PropertyGroup Condition="'$(SIGN_RELEASE_BINARY)' == ''"> <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>
<Target Name="CheckEnvironment"> <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/"/> <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/"/>
Expand Down

0 comments on commit 6ff78f9

Please sign in to comment.