]> git.saurik.com Git - wxWidgets.git/blobdiff - wx-config.in
fix include files path
[wxWidgets.git] / wx-config.in
index f1966ad2dd8b4297dbe280fc3385da1d99c1694e..b1e5374d879d3697b1a532e191d55aa0cb84aeb7 100755 (executable)
@@ -3,9 +3,12 @@
 prefix=@prefix@
 exec_prefix=@exec_prefix@
 exec_prefix_set=no
+CC="@CC@"
+CXX="@CXX@"
+LD="@SHARED_LD@"
 
 usage="\
-Usage: wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]"
+Usage: wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags] [--cc] [--cxx] [--ld]"
 
 if test $# -eq 0; then
       echo "${usage}" 1>&2
@@ -53,6 +56,15 @@ while test $# -gt 0; do
       fi
       echo $libs -l@WX_LIBRARY@ @EXTRA_LIBS@
       ;;
+    --cc)
+      echo $CC
+      ;;
+    --cxx)
+      echo $CXX
+      ;;
+    --ld)
+      echo $LD
+      ;;
     *)
       echo "${usage}" 1>&2
       exit 1