]> git.saurik.com Git - wxWidgets.git/blob - wx-config.in
replaced wxList for storing HWND <-> wxWindow with wxHashTable
[wxWidgets.git] / wx-config.in
1 #!/bin/sh
2
3 prefix=@prefix@
4 exec_prefix=@exec_prefix@
5 exec_prefix_set=no
6 CC="@CC@"
7 CXX="@CXX@"
8 LD="@SHARED_LD@"
9 cross_compiling=@cross_compiling@
10
11 usage()
12 {
13 cat <<EOF
14 Usage: wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version]
15 [--libs] [--gl-libs] [--cppflags] [--cflags] [--cxxflags] [--rezflags]
16 [--cc] [--cxx] [--ld]
17
18 wx-config returns configuration information about the installed
19 version of wxWindows. It may be used to query its version and
20 installation directories and also retrieve the C and C++ compilers
21 and linker which were used for its building and the corresponding
22 flags.
23 EOF
24
25 exit $1
26 }
27
28 cppflags()
29 {
30 if test "${cross_compiling}" != "yes" \
31 -a @includedir@ != /usr/include \
32 -a @includedir@ != /usr/include/c++ ;
33 then
34 includes=-I@includedir@
35 fi
36 includes="-I@libdir@/wx/include/@TOOLCHAIN_NAME@ $includes"
37 echo $includes @WXDEBUG_DEFINE@ @TOOLCHAIN_DEFS@ @WXCONFIG_INCLUDE@
38 }
39
40 if test $# -eq 0; then
41 usage 1 1>&2
42 fi
43
44 while test $# -gt 0; do
45 case "$1" in
46 -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
47 *) optarg= ;;
48 esac
49
50 case $1 in
51 --prefix=*)
52 prefix=$optarg
53 if test $exec_prefix_set = no ; then
54 exec_prefix=$optarg
55 fi
56 ;;
57 --prefix)
58 echo $prefix
59 ;;
60 --exec-prefix=*)
61 exec_prefix=$optarg
62 exec_prefix_set=yes
63 ;;
64 --exec-prefix)
65 echo $exec_prefix
66 ;;
67 --version)
68 echo @WX_MAJOR_VERSION_NUMBER@.@WX_MINOR_VERSION_NUMBER@.@WX_RELEASE_NUMBER@
69 ;;
70 --cppflags)
71 cppflags
72 ;;
73 --cflags)
74 echo `cppflags` @CODE_GEN_FLAGS@
75 ;;
76 --cxxflags)
77 echo `cppflags` @CODE_GEN_FLAGS@ @CODE_GEN_FLAGS_CXX@
78 ;;
79 --rezflags)
80 echo @LIBWXMACRESWXCONFIG@
81 ;;
82 --libs)
83 if test "${cross_compiling}" != "yes" \
84 -a @libdir@ != /usr/lib ;
85 then
86 libs="-L@libdir@"
87 fi
88 echo $libs @WXCONFIG_LIBS@ @EXTRA_LIBS@
89 ;;
90 --gl-libs)
91 echo @WXCONFIG_LIBS_GL@
92 ;;
93 --cc)
94 echo $CC
95 ;;
96 --cxx)
97 echo $CXX
98 ;;
99 --ld)
100 echo $LD
101 ;;
102 *)
103 usage 1 1>&2
104 ;;
105 esac
106 shift
107 done
108