2010-07-12 09:59:07 +02:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2010-12-21 14:02:05 +01:00
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2010-07-12 09:59:07 +02:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2010-07-12 09:59:07 +02:00
|
|
|
**
|
|
|
|
**
|
2010-12-21 14:02:05 +01:00
|
|
|
** GNU Free Documentation License
|
2010-07-12 09:59:07 +02:00
|
|
|
**
|
2010-12-21 14:02:05 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Free
|
|
|
|
** Documentation License version 1.3 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file included in the packaging of this
|
|
|
|
** file.
|
2010-07-12 09:59:07 +02:00
|
|
|
**
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2010-07-12 09:59:07 +02:00
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
//! [0]
|
|
|
|
otool -L /Developer/Applications/Qt/plugins/designer/libqwt_designer_plugin.dylib
|
|
|
|
//! [0]
|
|
|
|
|
|
|
|
|
|
|
|
//! [1]
|
|
|
|
/Developer/Applications/Qt/plugins/designer/libqwt_designer_plugin.dylib:
|
|
|
|
libqwt_designer_plugin.dylib (compatibility version 0.0.0, current version 0.0.0)
|
|
|
|
libqwt.5.dylib (compatibility version 5.2.0, current version 5.2.1)
|
|
|
|
QtDesigner.framework/Versions/4/QtDesigner (compatibility version 4.6.0, current version 4.6.2)
|
|
|
|
QtScript.framework/Versions/4/QtScript (compatibility version 4.6.0, current version 4.6.2)
|
|
|
|
QtXml.framework/Versions/4/QtXml (compatibility version 4.6.0, current version 4.6.2)
|
|
|
|
QtGui.framework/Versions/4/QtGui (compatibility version 4.6.0, current version 4.6.2)
|
|
|
|
QtCore.framework/Versions/4/QtCore (compatibility version 4.6.0, current version 4.6.2)
|
|
|
|
/usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
|
|
|
|
/usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 438.0.0)
|
|
|
|
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.0.1)
|
|
|
|
//! [1]
|
|
|
|
|
|
|
|
//! [2]
|
|
|
|
otool -L /usr/local/qwt-5.2.1/lib/libqwt.5.dylib
|
|
|
|
//! [2]
|
|
|
|
|
|
|
|
|
|
|
|
//! [3]
|
|
|
|
/usr/local/qwt-5.2.1/lib/libqwt.5.dylib:
|
|
|
|
libqwt.5.dylib (compatibility version 5.2.0, current version 5.2.1)
|
|
|
|
QtGui.framework/Versions/4/QtGui (compatibility version 4.6.0, current version 4.6.2)
|
|
|
|
QtCore.framework/Versions/4/QtCore (compatibility version 4.6.0, current version 4.6.2)
|
|
|
|
/usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.9.0)
|
|
|
|
/usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 438.0.0)
|
|
|
|
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.0.1)
|
|
|
|
//! [3]
|
|
|
|
|
|
|
|
|
|
|
|
//! [4]
|
|
|
|
sudo cp /Developer/Applications/Qt/plugins/designer/libqwt_designer_plugin.dylib \
|
|
|
|
/Developer/Applications/Qt/Qt\ Creator.app/Contents/MacOS/designer
|
|
|
|
sudo cp -R /usr/local/qwt-5.2.1/lib/* \
|
|
|
|
/Developer/Applications/Qt/Qt\ Creator.app/Contents/Frameworks/
|
|
|
|
//! [4]
|
|
|
|
|
|
|
|
|
|
|
|
//! [5]
|
|
|
|
cd /Developer/Applications/Qt/Qt\ Creator.app/Contents/MacOS/designer
|
2010-07-12 10:01:30 +02:00
|
|
|
sudo install_name_tool -change
|
2010-07-12 09:59:07 +02:00
|
|
|
QtCore.framework/Versions/4/QtCore \
|
|
|
|
@executable_path/../Frameworks/libQtCore.4.dylib \
|
|
|
|
libqwt_designer_plugin.dylib
|
|
|
|
sudo install_name_tool -change QtGui.framework/Versions/4/QtGui \
|
|
|
|
@executable_path/../Frameworks/libQtGui.4.dylib \
|
|
|
|
libqwt_designer_plugin.dylib
|
|
|
|
sudo install_name_tool -change QtXml.framework/Versions/4/QtXml \
|
|
|
|
@executable_path/../Frameworks/libQtXml.4.dylib \
|
|
|
|
libqwt_designer_plugin.dylib
|
|
|
|
sudo install_name_tool -change QtScript.framework/Versions/4/QtScript \
|
|
|
|
@executable_path/../Frameworks/libQtScript.4.dylib \
|
|
|
|
libqwt_designer_plugin.dylib
|
|
|
|
sudo install_name_tool -change QtDesigner.framework/Versions/4/QtDesigner \
|
|
|
|
@executable_path/../Frameworks/libQtDesigner.4.dylib \
|
|
|
|
libqwt_designer_plugin.dylib
|
|
|
|
sudo install_name_tool -change libqwt.5.dylib \
|
|
|
|
@executable_path/../Frameworks/libqwt.5.dylib \
|
|
|
|
libqwt_designer_plugin.dylib
|
|
|
|
|
|
|
|
cd /Developer/Applications/Qt/Qt\ Creator.app/Contents/Frameworks
|
|
|
|
sudo install_name_tool -change \
|
|
|
|
QtCore.framework/Versions/4/QtCore \
|
|
|
|
@executable_path/../Frameworks/libQtCore.4.dylib \
|
|
|
|
libqwt.5.2.1.dylib
|
|
|
|
sudo install_name_tool -change \
|
|
|
|
QtGui.framework/Versions/4/QtGui \
|
|
|
|
@executable_path/../Frameworks/libQtGui.4.dylib \
|
|
|
|
libqwt.5.2.1.dylib
|
|
|
|
//! [5]
|