This solution:
https://stackoverflow.com/questions/25929467/qt-android-location-of-java-files-common-to-different-projects
does not work as well.
12.01.2018 23:00, Denis Shienkov пишет:
> you can use COPIES
It does not work as well if the ANDROID_PACKAGE_SOURCE_DIR is defined.
12.01.2018
> you can use COPIES
It does not work as well if the ANDROID_PACKAGE_SOURCE_DIR is defined.
12.01.2018 22:31, Denis Shienkov пишет:
In a real project I need to copy an external *.java
files to the android-build/src/org directory.
Now, if I use the INSTALLS as following:
gst_java.files =
In a real project I need to copy an external *.java
files to the android-build/src/org directory.
Now, if I use the INSTALLS as following:
gst_java.files =
$$libs_sourcedir/$$GST_SUPPORT_TARGET/android-sources/src/org/freedesktop/$$GST_MODULE_NAME/GStreamer.java
gst_java.path = /src/or
On Fri, Jan 12, 2018 at 08:58:16PM +0300, Denis Shienkov wrote:
> I need to use the INSTALLS feature on Android project
> to copy of some files to the desired location.
>
> foo_bar.path = $$OUT_PWD/foobar
> INSTALLS += foo_bar
>
that's positively wrong.
for a non-install shadow build, you can use
Hi all,
I need to use the INSTALLS feature on Android project
to copy of some files to the desired location.
For, example, this simple example fails at building for the install target:
QT += quick
CONFIG += c++11
SOURCES += main.cpp
RESOURCES += qml.qrc
foo_bar.files += $$PWD/main.cpp
foo_bar.