File: borland_ide.cpp

package info (click to toggle)
wxpython3.0 3.0.2.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 482,760 kB
  • ctags: 518,293
  • sloc: cpp: 2,127,226; python: 294,045; makefile: 51,942; ansic: 19,033; sh: 3,013; xml: 1,629; perl: 17
file content (42 lines) | stat: -rw-r--r-- 1,396 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*************************************************
// Name:        borland_ide.cpp
// Author:      Chris Elliott
// Modified by:
// Created:     26/Apr/07
// Copyright:   (c) wxWidgets team
// Licence:     wxWindows licence
//
// Purpose:     Minimal wxWidgets start source file for
// Borland's Turbo explorer or Developer Studio 2006.
// Doubleclick / open borland.bdsproj. The current version is
// to be used with a dynamic build of wxWidgets-made by running
// make -f Makefile.bcc -DBUILD=debug -DSHARED=1
// in wxWidgets\build\msw. You also need the wxWidgets\lib\bcc_dll
// directory in your PATH.

// To use this to debug other samples, copy the borland_ide.cpp
// and borland.bdsproj files, then replace all occurences of
// "minimal" with the name of the new project files
**************************************************/

#define WinMain WinMain

//wx libs (you may not need all of these
#pragma link  "wxbase30ud.lib"
#pragma link  "wxmsw30ud_adv.lib"
#pragma link  "wxmsw30ud_core.lib"
#pragma link  "wxmsw30ud_html.lib"
#pragma link  "wxmsw30ud_media.lib"
#pragma link  "wxmsw30ud_xrc.lib"
#pragma link  "wxmsw30ud_aui.lib"
#pragma link  "wxmsw30ud_stc.lib"
#pragma link  "wxmsw30ud_richtext.lib"

//graphics libs
#pragma link  "wxpngd.lib"
#pragma link  "wxregexud.lib"
#pragma link  "wxtiffd.lib"
#pragma link  "wxzlibd.lib"
//code aware lib
#pragma link  "wxscintillad.lib"