X11/Linux下发布Qt程序(Deploying …

来源:互联网 发布:巨杉数据库nosql 编辑:程序博客网 时间:2024/05/18 19:41
轉載請註明本文轉自 http://blog.sina.com.cn/s/blog_7a9ade2c0100vcfh.html

在X11平臺下發佈qt程序,首先準備好程序中需要使用的資源,庫和插件。。。
比如你的可
運行
程序取名叫作panel,那把你的panel,那些libQt*.so.4和libQt*.so.4.6.0(链接和共享库都要)放在同一目錄下(也可以不同,只要小小修改下shell文件).plugins就不多說了。
在程序的同目錄下,新建一個空文檔,取名panel.sh (文件名與程序名同名,擴展名為sh,shell文件).
在panel.sh中原封不動的寫入以下語句:


#!/bin/sh
appname=`basename $0 | sed s,\.sh$,,`
dirname=`dirname $0`
tmp="${dirname#?}"
if [ "${dirname%$tmp}" != "/" ]; then
dirname=$PWD/$dirname
fi
LD_LIBRARY_PATH=$dirname
export LD_LIBRARY_PATH
$dirname/$appname $*


保存文件,退出.在終端給文件+x屬性:切換到程序的目錄,輸入
chmod +x panel.sh
然後運行shell文件就行了(确保panel程序具备X属性),它會自動更改環境變量,運行程序.
如果要調試shell文件,只需要在終端輸入:

sh -x panel.sh
這樣就ok了.

關於plugins,有以下3种處理方法: 
# Using qt.conf. This is the recommended approach since it providesthe most flexibility.
# Using QApplication::addLibraryPath() orQApplication::setLibraryPaths().
# Using a third party installation utility or the target system'spackage manager to change the hard-coded paths in theQtCorelibrary.

第二种方法很簡單。qt.conf的方法也不錯.看看這個:


EntryDefault ValuePrefixQCoreApplication::applicationDirPath()DocumentationdocHeadersincludeLibrarieslibBinariesbinPluginspluginsData.TranslationstranslationsSettings.Examples.Demos.
最簡單的qt.conf文件這樣寫就好了:(插件在當前文件夾下的plugins文件夾裏)
[Paths]
Prefix = .
Plugins = plugins


好了.大功告成!
0 0
原创粉丝点击