5bb178c479
Multi arch build in one go is need to support the new .aab packaging format. By default the users apps are built for all Android ABIs: arm64-v8a armeabi-v7a x86_64 x86 The user can pass ANDROID_ABIS to qmake to filter the ABIs during development, e.g. qmake ANDROID_ABIS="arm64-v8a armeabi-v7a" will build only for arm ABIs. [ChangeLog][Android] Android multi arch build in one go, needed to support the new .aab packaging format. Change-Id: I3a64caf9621c2a195863976a62a57cdf47e6e3b5 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
15 lines
294 B
Plaintext
15 lines
294 B
Plaintext
targetinfofile = $$basename(_PRO_FILE_)
|
|
targetinfofile ~= s/pro$/target.txt/
|
|
|
|
win32 {
|
|
ext = .exe
|
|
} else:wasm {
|
|
equals(WASM_OBJECT_FILES, 1): \
|
|
ext = .o
|
|
else: \
|
|
ext = .wasm
|
|
}
|
|
|
|
content = $${file_prefix}$${TARGET}$${ext}
|
|
write_file($$OUT_PWD/$$targetinfofile, content)
|