updating dates, fixing product name
[wxWidgets.git] / samples / minimal / borland_ide.cpp
1 /*************************************************
2 // Name: borland_ide.cpp
3 // Author: Chris Elliott
4 // Modified by:
5 // Created: 26/Apr/07
6 // RCS-ID: $Id$
7 // Copyright: (c) wxWidgets team
8 // Licence: wxWindows licence
9 //
10 // Purpose: Minimal wxWidgets start source file for
11 // Borland's Turbo explorer or Developer Studio 2006.
12 // Doubleclick / open borland.bdsproj. The current version is
13 // to be used with a dynamic build of wxWidgets-made by running
14 // make -f Makefile.bcc -DBUILD=debug -DSHARED=1
15 // in wxWidgets\build\msw. You also need the wxWidgets\lib\bcc_dll
16 // directory in your PATH.
17
18 // To use this to debug other samples, copy the borland_ide.cpp
19 // and borland.bdsproj files, then replace all occurences of
20 // "minimal" with the name of the new project files
21 **************************************************/
22
23 #define WinMain WinMain
24
25 //wx libs (you may not need all of these
26 #pragma link "wxbase29ud.lib"
27 #pragma link "wxmsw29ud_adv.lib"
28 #pragma link "wxmsw29ud_core.lib"
29 #pragma link "wxmsw29ud_html.lib"
30 #pragma link "wxmsw29ud_media.lib"
31 #pragma link "wxmsw29ud_xrc.lib"
32 #pragma link "wxmsw29ud_aui.lib"
33 #pragma link "wxmsw29ud_stc.lib"
34 #pragma link "wxmsw29ud_richtext.lib"
35
36 //graphics libs
37 #pragma link "wxpngd.lib"
38 #pragma link "wxregexud.lib"
39 #pragma link "wxtiffd.lib"
40 #pragma link "wxzlibd.lib"
41 //code aware lib
42 #pragma link "wxscintillad.lib"
43