aboutsummaryrefslogtreecommitdiffstats
path: root/config.nmake
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-10-16 14:03:42 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-10-16 14:03:42 +0000
commitdf44255d078294c3908de77b9ae46d41ace82819 (patch)
tree180e8b34fad3afb8d245a10a2bf8ce5e6a7ce41f /config.nmake
parent00ccb5573a4a6df9efc728d6eb9eaef50551fc08 (diff)
- Use PROGRAM_NAME in the unistaller too.
- Make it possible to set PROGRAM_NAME in environment. - Update the comment about setting program name it *should* work now. svn path=/trunk/; revision=45582
Diffstat (limited to 'config.nmake')
-rw-r--r--config.nmake10
1 files changed, 8 insertions, 2 deletions
diff --git a/config.nmake b/config.nmake
index 0cb6cc74ab..1032fa9a6c 100644
--- a/config.nmake
+++ b/config.nmake
@@ -4,8 +4,14 @@
# the file README.windows and the Developer's Guide (available online).
##### Program name #####
-# Do not change as it will break the installer and possibly other stuff
-PROGRAM_NAME=wireshark
+# Changing the name is experimental and may break the installer/unistaller and possibly other stuff.
+# Application data will still be under the same dir as Wireshark so perference files profiles etc
+# will be shared with a "normal" Wireshark installation.
+# Note that suport libararies needs to be in PROGRAM_NAME-libs...
+
+!IFNDEF PROGRAM_NAME
+PROGRAM_NAME=Wireshark
+!ENDIF
##### Target platform #####
# Only "win32" and "win64" are valid (for now).