Qbs compile for Android
-
Hello,
I tried to compile an Android project with Qbs. I just created a QtQuick Controls 2 project in QtCreator, changed
CppApplicationtoDynamicLibraryand addedarchitectures: ["armv7a"] . . . } AndroidApk { name: "AndroidTest" manifestFile: "" Depends { productTypes: [ "android.nativelibrary" ] } } }Then I created a android profile with qbs-setup-android, named
Androidand added theAndroid.ndk.abivalue (because qbs told me to).
When runningqbs build profile:AndroidI get the errortype_traits: No such file or directory.
What am I missing?My Setup:
Manjaro Linux
Qt 5.9.1 (armv7a) [from yaourt]
Qbs 1.8.1
Android Ndk 10e (using GCC 4.9) [from yaourt]PS: Qt and the Ndk is installed properly. With qmake I can compile the project.