summaryrefslogtreecommitdiffstats
path: root/cmake/QtSetup.cmake
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-05-15 14:22:20 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2019-05-15 17:34:05 +0000
commit4dacc099213acf804b50c6e9a9afba5fda8b8e3b (patch)
tree028c33fbf70725095bd12fceb0446bdeb6dc6d13 /cmake/QtSetup.cmake
parent9542e78525b422159406d8fa63e30dcd0f926411 (diff)
Save and set the CMAKE_INSTALL_PREFIX in BuildInternal's Config file
Once qtbase is built and installed, save the CMAKE_INSTALL_PREFIX that was used during the build, and set it when a consumer calls find_package(Qt5BuildInternals). This fixes a bug where syncqt can not be found when building qtsvg, while the developer specifies CMAKE_PREFIX_PATH to find the Qt packages, but does not set the CMAKE_INSTALL_PREFIX. Task-number: QTBUG-75544 Change-Id: I03fd23ba418af5115105610f3f9ed92664562945 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'cmake/QtSetup.cmake')
-rw-r--r--cmake/QtSetup.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/QtSetup.cmake b/cmake/QtSetup.cmake
index 187f1bf740..3b02633ed7 100644
--- a/cmake/QtSetup.cmake
+++ b/cmake/QtSetup.cmake
@@ -41,8 +41,8 @@ if(FEATURE_developer_build)
set(CMAKE_INSTALL_PREFIX ${CMAKE_BINARY_DIR} CACHE PATH
"Install path prefix, prepended onto install directories." FORCE)
else()
- # No-op. While building another module, the CMAKE_INSTALL_PREFIX should be set on the
- # command line to point to the qtbase build dir.
+ # No-op. While building another module, the CMAKE_INSTALL_PREFIX or CMAKE_PREFIX_PATH
+ # (either work) should be set on the command line to point to the qtbase build dir.
endif()
else()
set(QT_WILL_INSTALL ON)