Wx-Config
From WxWiki
[edit] What is wx-config
wx-config is a small command-line utility which can help you while building on unix-like systems (including linux and Mac OS X) It will :
- tell you what compile flags to use (wx-config --cxxflags)
- tell you what link flags to use (wx-config --libs)
- can manage multiple wxWidgets installs with different configurations (wx-config --list et al)
[edit] How to use wx-config
Simple use might be something like this:
g++ `wx-config --cxxflags` -o out *.cpp `wx-config --libs`Of course, if you compile and link your application in separate steps, as is common, you will want to use the --cxxflags bit when compiling to .o and the --libs part when linking them into an executable.
You can even ask wx-config to pick a compiler :
`wx-config --cxx --cxxflags` -o out *.cpp `wx-config --libs`If you have multiple wxWidgets installations in the same prefix (e.g. /usr/local/), you can select the right build with options like :
- --debug=[yes/no]
- --version=[2.8/etc.]
Type wx-config --help to know all options that are available
Miscellaneous notes :
- From your IDE, you can simply put `wx-config --cxxflags` in compile flags and `wx-config --libs` in link flags
- If your IDE doesn't support backtick execution or some equivalent, here's what to do : #1 complain to whoever wrote your IDE and #2 run these commands without the backticks in a terminal and copy the output manually
- wx-config will be installed to a system-wide directory on make install, however it is not necessary to issue make install in order to use wx-config. Whenever you build wxWidgets, a local wx-config will be created in the build directory. You can then simply get the flags by calling wx-config locally : ./wx-config. This can also help keeping different configurations truly separate and may avoid some conflicts.
- On Unix systems, wx-config may be a symlink to specific wx-config files for various wxWidgets ports/platforms (wxbase-2.5-config, wxgtk-2.5-config, ...).
- There is also a --basename and --release option, which are helpful for write-once Makefiles (using the same makefile across linux and OSX and for different versions of the library like debug/nondebug unicode/non-unicode, gkt/mac).
[edit] Windows
Now there is also a c++ wx-config Windows port, which works similar to this wx-config.
