1180d5b8a2
Qt Creator maintains a mapping from Qt version to Android NDK version and other build information. It's simpler to let the Qt build write the Android build information into modules/Core.json and have Qt Creator use this information. This adds the following properties to the module JSON files: - built_with.android.api_version - built_with.android.ndk.version Task-number: QTBUG-108292 Change-Id: I0febda5192289c5afb1a098880b31bef6317db35 Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io> Reviewed-by: Alexey Edelev <alexey.edelev@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
12 lines
392 B
JSON
12 lines
392 B
JSON
{
|
|
"module_name": "${target}",
|
|
"version": "${PROJECT_VERSION}",
|
|
"built_with": {${extra_build_information}
|
|
"compiler_id": "${CMAKE_CXX_COMPILER_ID}",
|
|
"compiler_target": "${CMAKE_CXX_COMPILER_TARGET}",
|
|
"compiler_version": "${CMAKE_CXX_COMPILER_VERSION}",
|
|
"cross_compiled": ${cross_compilation},
|
|
"target_system": "${CMAKE_SYSTEM_NAME}"
|
|
}
|
|
}
|