-
Notifications
You must be signed in to change notification settings - Fork 5
/
INSTALL.txt
31 lines (22 loc) · 1.11 KB
/
INSTALL.txt
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
//--------------------------------------------------------------------------------------------
// INSTALLATION wx-config
//--------------------------------------------------------------------------------------------
For installing wx-config-win simply copy the file wx-config.exe to somewhere in your PATH.
Examples: C:\Windows\System32\wx-config.exe
C:\MinGW\bin\wx-config.exe
Set the environmental variable WXWIN to where you have installed wxWidgets.
Example: WXWIN=C:\wxWidgets
For more info see README.txt
//--------------------------------------------------------------------------------------------
// COMPILATION of wx-config
//--------------------------------------------------------------------------------------------
If you have Code::Blocks, a project is provided.
Just do a right-click on the .cbp and click "Build".
If you don't have Code::Blocks:
Open a console (cmd.exe) and type the following (make sure the compiler is in PATH):
For mingw:
mingw32-g++ wx-config-win.cpp -s -o wx-config.exe
For dmc:
dmc wx-config-win.cpp -owx-config.exe
For vc:
cl wx-config-win.cpp