Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: WixInstaller/Makefile

Issue 10879048: Use minor upgrade mechanism for updates, set installer versionautomatically (Closed)
Patch Set: Looks like I misunderstood nmake documentation, previous change made settings VERSION parameter ext… Created June 12, 2013, 2:02 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: WixInstaller/Makefile
===================================================================
--- a/WixInstaller/Makefile
+++ b/WixInstaller/Makefile
@@ -9,18 +9,24 @@
# If an architecture is specified, the default target is constrained to it.
#----------------------------------
.SUFFIXES: .msi .wixobj .wxs
Build_Dir_common = ..\build\ #
Build_Dir_ia32 = ..\build\ia32\ # comment prevents newline
Build_Dir_x64 = ..\build\x64\ #
+
+!ifndef Configuration
Configuration = Release Test
+!endif
+
+!ifndef VERSION
VERSION = 99.9
+!endif
#---------------------
# Default Targets
#
# We change the default rule depending upon the ARCH (architecture) definition.
#---------------------
Installer_ia32 = $(Build_Dir_ia32)adblockplusie-$(VERSION)-en-us-ia32.msi
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld