]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/msw/version.rc
added debug/release DLL configurations so that VC++ chooses the right one when buildi...
[wxWidgets.git] / src / msw / version.rc
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: src/msw/version.rc
3// Purpose: contains version info resource for wxMSW DLL build
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 09.07.00
7// RCS-ID: $Id$
8// Copyright: (c) 2000 Vadim Zeitlin
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
12#include "wx/version.h"
13
14// see http://msdn.microsoft.com/library/psdk/winui/rc_7x2d.htm for values: we
15// don't use symbolic constants because older compilers might not have them
16#ifdef WXMAKINGDLL
17 #define wxVFT 2 // VFT_DLL
18#else
19 #define wxVFT 1 // VFT_APP
20#endif
21
22#ifdef _DEBUG
23 #define DLL_FLAGS 0x1L
24 #define DLL_SUFFIX "d"
25#else
26 #define DLL_FLAGS 0x0L
27 #define DLL_SUFFIX ""
28#endif
29
30#ifdef _UNICODE
31 #define LANG "04090000"
32#else
33 #define LANG "040904b0"
34#endif
35
361 VERSIONINFO
37 FILEVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxBETA_NUMBER
38 PRODUCTVERSION wxMAJOR_VERSION,wxMINOR_VERSION,wxRELEASE_NUMBER,wxBETA_NUMBER
39 FILEFLAGSMASK 0x3fL
40 FILEFLAGS DLL_FLAGS
41 FILEOS 0x40004L // VOS_NT_WINDOWS32
42 FILETYPE wxVFT
43 FILESUBTYPE 0x0L
44BEGIN
45 BLOCK "StringFileInfo"
46 BEGIN
47 // US English Ascii; see http://msdn.microsoft.com/library/psdk/winui/rc_3rxn.htm for codes
48 BLOCK LANG
49 BEGIN
50 VALUE "Comments", "wxWindows cross-platform GUI framework\0"
51 VALUE "CompanyName", "wxWindows development team\0"
52 VALUE "FileDescription", "wxWindows for MSW\0"
53 VALUE "FileVersion", "wxWindows Library " wxVERSION_NUM_DOT_STRING "\0"
54 VALUE "InternalName", "wxMSW\0"
55