]>
Commit | Line | Data |
---|---|---|
1b54a5d2 CE |
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 | // | |
32326dc3 CE |
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 | |
1b54a5d2 CE |
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 | |
824eec7e CE |
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" | |
1b54a5d2 CE |
35 | |
36 | //graphics libs | |
37 | #pragma link "wxpngd.lib" | |
824eec7e | 38 | #pragma link "wxregexud.lib" |
1b54a5d2 CE |
39 | #pragma link "wxtiffd.lib" |
40 | #pragma link "wxzlibd.lib" | |
824eec7e CE |
41 | //code aware lib |
42 | #pragma link "wxscintillad.lib" | |
1b54a5d2 | 43 |