为 Android 构建 QtLocation 模块
Posted
技术标签:
【中文标题】为 Android 构建 QtLocation 模块【英文标题】:Build QtLocation module for Android 【发布时间】:2013-08-12 12:45:00 【问题描述】:现在我正在尝试为 android 构建 Qt 5.1.2(用于 armeabi 库)
我发现来自 git 的 Qt5 源不包括 QtLocation 和其他一些模块。 所以我尝试了
git clone git://gitorious.org/qt/qtlocation.git qtlocation
perl init-repository -f
./configure -android-toolchain-version 4.8 -android-arch armeabi -android-ndk-host linux-x86 -developer-build -xplatform android-g++ -nomake tests -nomake examples -android-ndk /home/onurozcelik/Android/android-ndk-r9/ -android-sdk /home/onurozcelik/Android/android-sdk-linux/ -skip qttools -skip qttranslations -skip qtwebkit -skip qtserialport -skip qtwebkit-examples
make
make 后出现如下错误
Entering directory `/home/onurozcelik/qt5/qtlocation/src/3rdparty/poly2tri'
make[3]: Nothing to be done for `first'.
make[3]: Leaving directory `/home/onurozcelik/qt5/qtlocation/src/3rdparty/poly2tri'
make[2]: Leaving directory `/home/onurozcelik/qt5/qtlocation/src/3rdparty'
cd location/ && ( test -e Makefile || /home/onurozcelik/qt5/qtbase/bin/qmake /home/onurozcelik/qt5/qtlocation/src/location/location.pro -o Makefile ) && make -f Makefile
Project ERROR: Module does not define version.
make[1]: *** [sub-location-make_first-ordered] Error 3
make[1]: Leaving directory `/home/onurozcelik/qt5/qtlocation/src'
make: *** [sub-src-make_first] Error 2
有什么问题?如何为 Android 构建 QtLocation?
【问题讨论】:
【参考方案1】:克隆并构建 Qt 位置git clone git://gitorious.org/qt/qtlocation.git
cd qtlocation
qmake # from qt5
make
make docs
sudo make install
【讨论】:
以上是关于为 Android 构建 QtLocation 模块的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 QML/QtLocation 模块在地图上显示大量离线数据?