aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2020-02-12 09:11:21 +0100
committerEike Ziller <eike.ziller@qt.io>2020-02-13 10:37:35 +0000
commit09894c6e0b8ec7b3d1accabff97ea26b24be2799 (patch)
tree35316e49df4d98c2db058d70d2f70c1d1aa4abbc /cmake
parentc83a33941db57fbfefca907de1a7187a58fa1d9d (diff)
CMake build: Fix libexec path on Linux
It's just libexec/qtcreator/ without a trailing bin/ Change-Id: I96015dc5c3bb023dabd5b64f1bb9f83bd85b4d51 Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/QtCreatorAPI.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/QtCreatorAPI.cmake b/cmake/QtCreatorAPI.cmake
index 8ca2a4f27f..d9be18706b 100644
--- a/cmake/QtCreatorAPI.cmake
+++ b/cmake/QtCreatorAPI.cmake
@@ -61,7 +61,7 @@ else ()
set(QT_DEST_PLUGIN_PATH "bin/plugins")
set(QT_DEST_QML_PATH "bin/qml")
else ()
- set(_IDE_LIBEXEC_PATH "libexec/${IDE_ID}/bin")
+ set(_IDE_LIBEXEC_PATH "libexec/${IDE_ID}")
set(QT_DEST_PLUGIN_PATH "lib/Qt/plugins")
set(QT_DEST_QML_PATH "lib/Qt/qml")
endif ()