| ホーム · All Namespaces · 全てのクラス · メインのクラス · グループ別 · Modules · 関数一覧 |
[Previous: Installation]
Note: Qt for Mac OS X has some requirements that are given in more detail in the Qt for Mac OS X Requirements document.
Note for the binary package: If you have the binary package, simply double-click on the Qt.mpkg and follow the instructions to install Qt. You can later run the uninstall-qt.py script to uninstall the binary package. The script is located in /Developer/Tools and must be run as root.
The following instructions describe how to install Qt from the source package.
# オープンソース版の場合はライセンスファイルは必要ありません。
cd /tmp
gunzip qt-mac-opensource-desktop-4.5.0.tar.gz # uncompress the archive
tar xvf qt-mac-opensource-desktop-4.5.0.tar # unpack it
これで /tmp/qt-mac-opensource-desktop-4.5.0 というディレクトリができ、アーカイブ内のファイルが入ります。
To configure the Qt library for your machine type, run the ./configure script in the package directory.
By default, Qt is configured for installation in the /usr/local/Trolltech/Qt-4.5.0 directory, but this can be changed by using the -prefix option.
cd /tmp/qt-mac-opensource-desktop-4.5.0
./configure
ここで ./configure -help とすると全ての使用可能なオプションが表示されます。
Note that you will need to specify -universal if you want to build universal binaries, and also supply a path to the -sdk option if your development machine has a PowerPC CPU. By default, Qt is built as a framework, but you can built it as a set of dynamic libraries (dylibs) by specifying the -no-framework option.
Qt can also be configured to be built with debugging symbols. This process is described in detail in the Debugging Techniques document.
To create the library and compile all the demos, examples, tools, and tutorials, type:
make
If -prefix is outside the build directory, you need to install the library, demos, examples, tools, and tutorials in the appropriate place. To do this, type:
sudo make -j1 install
as root, if neccessary (note that this requires that you have administrator access to your machine).
There is a potential race condition when running make install with multiple jobs. It is best to only run one make job (-j1) for the install.
Note: If you later need to reconfigure and rebuild Qt from the same location, ensure that all traces of the previous configuration are removed by entering the build directory and typing make confclean before running configure again.
In order to use Qt, some environment variables need to be extended.
PATH - to locate qmake, moc and other Qt tools
これは以下のようにやります。
シェルがcshかtcshの場合、 .profile ファイルに以下の行を加えてください。
PATH=/usr/local/Trolltech/Qt-4.5.0/bin:$PATH
export PATH
シェルがcshかtcshの場合、 .login ファイルに以下の行を加えてください。
setenv PATH /usr/local/Trolltech/Qt-4.5.0/bin:$PATH
もし異なるシェルを使っているなら、環境変数に応じて変更してください。
もし初めてQtを使うなら、Qtの動作を見るためデモやサンプルプログラムを見てください。Qtのサンプルプログラムやデモはコマンドラインかデスクトップのスターとメニューを通して qtdemo と入力すれば出来ます。
以下のリンク先も参照してください。
楽しくQtが使用できることを望みます。成功を祈ります。
[Previous: Installation]
| Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies) | Trademarks | Qt 4.5.0 |