diff options
author | Gerald Combs <gerald@wireshark.org> | 2013-10-22 16:48:04 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2013-10-22 16:48:04 +0000 |
commit | 4baec51d954811f3309441d95577a8cd24afdd23 (patch) | |
tree | 552cfa1caa712f36cae6e1afb9382f7ad03ad68f /macosx-setup.sh | |
parent | 7aee8b2dcf70cade2c3732eef0649220a79e82a8 (diff) | |
download | wireshark-4baec51d954811f3309441d95577a8cd24afdd23.tar.gz wireshark-4baec51d954811f3309441d95577a8cd24afdd23.tar.bz2 wireshark-4baec51d954811f3309441d95577a8cd24afdd23.zip |
Add information about building Qt.
svn path=/trunk/; revision=52769
Diffstat (limited to 'macosx-setup.sh')
-rwxr-xr-x | macosx-setup.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/macosx-setup.sh b/macosx-setup.sh index 1dd3ae4ad5..ce5b5792a9 100755 --- a/macosx-setup.sh +++ b/macosx-setup.sh @@ -24,6 +24,29 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # +# To set up Qt +# +# curl -O http://download.qt-project.org/official_releases/qt/5.1/5.1.1/single/qt-everywhere-opensource-src-5.1.1.tar.gz +# +# Choose one of: +# TARGET_PLATFORM=macx-clang +# TARGET_PLATFORM=macx-clang-32 +# +# Qt 5.1.x sets QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6 +# in qtbase/mkspecs/$TARGET_PLATFORM/qmake.conf +# We may need to adjust this manually in the future. +# +# The -no-c++11 flag is needed to work around +# https://bugreports.qt-project.org/browse/QTBUG-30487 +# +#./configure \ +# -platform $TARGET_PLATFORM \ +# -opensource -confirm-license \ +# -no-c++11 +# +# make + +# # To set up a GTK3 environment GTK3=1 # To build cmake |