use specific linker flags under Mac OS X when linking executables against the

wxWindows dynamic shared library (LDFLAGS_EXE)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15205 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2002-04-19 18:39:06 +00:00
parent 010afced51
commit 40f7145ca5
5 changed files with 16 additions and 5 deletions

View File

@@ -14,7 +14,8 @@ usage()
{
cat <<EOF
Usage: wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--static]
[--libs] [--gl-libs] [--cppflags] [--cflags] [--cxxflags] [--rezflags]
[--libs] [--gl-libs]
[--cppflags] [--cflags] [--cxxflags] [--ldflags] [--rezflags]
[--cc] [--cxx] [--ld]
wx-config returns configuration information about the installed
@@ -88,6 +89,9 @@ while test $# -gt 0; do
--cxxflags)
echo `cppflags` @CODE_GEN_FLAGS@ @CODE_GEN_FLAGS_CXX@
;;
--ldflags)
echo @LDFLAGS_EXE@
;;
--rezflags)
echo @LIBWXMACRESWXCONFIG@
;;