diff options
| -rw-r--r-- | cmake/QtModuleHelpers.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmake/QtModuleHelpers.cmake b/cmake/QtModuleHelpers.cmake index 819ea1b334..cbb2b243f8 100644 --- a/cmake/QtModuleHelpers.cmake +++ b/cmake/QtModuleHelpers.cmake @@ -1070,6 +1070,11 @@ function(qt_describe_module target) endif() endif() + get_target_property(is_internal ${target} _qt_is_internal_module) + if(is_internal) + string(APPEND extra_module_information "\n \"internal\": true,") + endif() + set(extra_build_information "") if(ANDROID) string(APPEND extra_build_information " |
