summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-11-10 20:21:21 +0100
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2020-11-10 20:30:01 +0100
commitd04e117d3dd0e35d2e5dc4f636346389faf80348 (patch)
treeae438aac6d3938478b9c8fb76d2dffb94179b8bc /src
parent8780fbb2ebff82f6e9b2dbae9a523d094d327b32 (diff)
cmake: Fix genex syntax error for iOS entrypoint
Change-Id: I09f8870b937b7effd547071530636c314d242a16 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/Qt6CoreMacros.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/Qt6CoreMacros.cmake b/src/corelib/Qt6CoreMacros.cmake
index d6132d5db6..288c2437cd 100644
--- a/src/corelib/Qt6CoreMacros.cmake
+++ b/src/corelib/Qt6CoreMacros.cmake
@@ -1415,7 +1415,7 @@ function(_qt_internal_setup_startup_target)
# error out when called multiple times from different scopes.
set_target_properties("${target}" PROPERTIES INTERFACE_LINK_LIBRARIES "${finalGenex}")
elseif(CMAKE_SYSTEM_NAME STREQUAL "iOS")
- set(finalGenex "$<$<AND:${isExe},${isNotExcluded}>Qt::EntryPoint>")
+ set(finalGenex "$<$<AND:${isExe},${isNotExcluded}>:Qt::EntryPoint>")
set_target_properties("${target}" PROPERTIES INTERFACE_LINK_OPTIONS "${finalGenex}")
endif()