summaryrefslogtreecommitdiff
path: root/config.nmake
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-01-05 04:58:52 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-01-05 04:58:52 +0000
commitb6fd719414a8de20200533a0670770058c7b25b4 (patch)
tree48bfb54edb73a326b01f618d32d972e7fb008be3 /config.nmake
parent7d0118ff10ee211b79211e143723ee0f6d8f9c8f (diff)
downloadwireshark-b6fd719414a8de20200533a0670770058c7b25b4.tar.gz
move the directory settings more to the top, add an optional platform SDK setting
svn path=/trunk/; revision=20322
Diffstat (limited to 'config.nmake')
-rw-r--r--config.nmake36
1 files changed, 23 insertions, 13 deletions
diff --git a/config.nmake b/config.nmake
index 2c8127ebc9..54c6cf556a 100644
--- a/config.nmake
+++ b/config.nmake
@@ -23,6 +23,22 @@ WTAP_VERSION_MICRO=1
+##### Directories #####
+
+#
+# Base directory, where your libraries reside, which are needed to
+# compile the sources. This setting is used only inside this file.
+#
+WIRESHARK_LIBS=C:\wireshark-win32-libs
+
+#
+# Base directory, where your programs reside.
+# This setting is used only inside this file.
+#
+PROGRAM_FILES=C:/Program Files
+
+
+
##### Microsoft Visual C / Studio Variant #####
# for the different Studios, see: http://en.wikipedia.org/wiki/Microsoft_Visual_Studio
# only one of the following MSVC_VARIANT settings should be used
@@ -55,21 +71,15 @@ MSVC_VARIANT=MSVC6
# Visual C++ 8.0, _MSC_VER 1400, msvcr80.dll
#MSVC_VARIANT=MSVC2005
-
-
-##### Directories #####
-
-#
-# Base directory, where your libraries reside, which are needed to
-# compile the sources. This setting is used only inside this file.
#
-WIRESHARK_LIBS=C:\wireshark-win32-libs
-
-#
-# Base directory, where your programs reside.
-# This setting is used only inside this file.
+# Optional: Microsoft Platform SDK.
+# (Mandatory for some MSVC_VARIANTs, see above)
#
-PROGRAM_FILES=C:/Program Files
+# If you don't have the PSDK, comment this line out, so that
+# PLATFORM_SDK_DIR isn't defined.
+#
+# If you have installed a platform SDK, set this to the directory where it reside
+#PLATFORM_SDK_DIR=$(PROGRAM_FILES)\Microsoft Platform SDK for Windows Server 2003 R2