aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2020-10-22 10:02:47 +0200
committerEike Ziller <eike.ziller@qt.io>2020-10-22 11:44:58 +0000
commit067cb61c7c8154c602b55b5eefe2482401fcee3f (patch)
treea3ae568b2e21c8952a33c357fc8bc8820a9b1db9 /cmake
parent860eeca6c581427958fa3315f4d6358182df19f1 (diff)
cmake build: Fix export name in case of branding
We must use the same name everywhere for the export name, for simplicity stay with QtCreator, since this is not user-visible anyhow. Change-Id: I4f51982534662d46401dad1320eec3758eed055b Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/QtCreatorAPI.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/QtCreatorAPI.cmake b/cmake/QtCreatorAPI.cmake
index 9bb2764959..9c2c582b93 100644
--- a/cmake/QtCreatorAPI.cmake
+++ b/cmake/QtCreatorAPI.cmake
@@ -214,7 +214,7 @@ function(add_qtc_library name)
endif()
install(TARGETS ${name}
- EXPORT ${IDE_CASED_ID}
+ EXPORT QtCreator
RUNTIME
DESTINATION "${_DESTINATION}"
${COMPONENT_OPTION}
@@ -460,7 +460,7 @@ function(add_qtc_plugin target_name)
if (NOT _arg_SKIP_INSTALL)
install(TARGETS ${target_name}
- EXPORT ${IDE_CASED_ID}
+ EXPORT QtCreator
RUNTIME DESTINATION "${plugin_dir}" OPTIONAL
LIBRARY DESTINATION "${plugin_dir}" OPTIONAL
ARCHIVE