aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis/moduleinfo.nmake
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-12-19 22:23:56 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-12-19 22:23:56 +0000
commit492d03c9d8d99330041dd87f076eb1ce7dc7e332 (patch)
tree603f859db01aca03ee62f6dfa3bb95996a765cfd /plugins/docsis/moduleinfo.nmake
parent7af87bcc87160cba56fd0ac61a27f4089a0d5f04 (diff)
Add Windows version info resource.
svn path=/trunk/; revision=20159
Diffstat (limited to 'plugins/docsis/moduleinfo.nmake')
-rw-r--r--plugins/docsis/moduleinfo.nmake28
1 files changed, 28 insertions, 0 deletions
diff --git a/plugins/docsis/moduleinfo.nmake b/plugins/docsis/moduleinfo.nmake
new file mode 100644
index 0000000000..a0d54a2dd5
--- /dev/null
+++ b/plugins/docsis/moduleinfo.nmake
@@ -0,0 +1,28 @@
+#
+# $Id$
+#
+
+# The name
+PACKAGE=docsis
+
+# The version
+MODULE_VERSION_MAJOR=0
+MODULE_VERSION_MINOR=0
+MODULE_VERSION_MICRO=5
+MODULE_VERSION_EXTRA=0
+
+#
+# The RC_VERSION should be comma-separated, not dot-separated,
+# as per Graham Bloice's message in
+#
+# http://www.ethereal.com/lists/ethereal-dev/200303/msg00283.html
+#
+# "The RC_VERSION variable in config.nmake should be comma separated.
+# This allows the resources to be built correctly and the version
+# number to be correctly displayed in the explorer properties dialog
+# for the executables, and XP's tooltip, rather than 0.0.0.0."
+#
+
+MODULE_VERSION=$(MODULE_VERSION_MAJOR).$(MODULE_VERSION_MINOR).$(MODULE_VERSION_MICRO).$(MODULE_VERSION_EXTRA)
+RC_MODULE_VERSION=$(MODULE_VERSION_MAJOR),$(MODULE_VERSION_MINOR),$(MODULE_VERSION_MICRO),$(MODULE_VERSION_EXTRA)
+