summaryrefslogtreecommitdiff
path: root/Tools/qmake
diff options
context:
space:
mode:
authorKonstantin Tokarev <annulen@yandex.ru>2017-04-21 06:12:49 +0300
committerKonstantin Tokarev <annulen@yandex.ru>2017-04-22 08:43:17 +0000
commitbd3f57b00bee3088971209a0ebc513eb1ef4ba14 (patch)
tree651d181d7348d440ff164909e8480297e4e7f18e /Tools/qmake
parent3b7091813e38631b9ca03ce9657c170ee8826439 (diff)
downloadqtwebkit-bd3f57b00bee3088971209a0ebc513eb1ef4ba14.tar.gz
Import WebKit commit 584c4a7a6a8bffb60f03b9eb10a65dbcf41dc0b7
Change-Id: Ife943bbbd8226afa05ef6320b10ba351d55fd797 Reviewed-by: Konstantin Tokarev <annulen@yandex.ru>
Diffstat (limited to 'Tools/qmake')
-rw-r--r--Tools/qmake/projects/run_cmake.pro13
1 files changed, 7 insertions, 6 deletions
diff --git a/Tools/qmake/projects/run_cmake.pro b/Tools/qmake/projects/run_cmake.pro
index 45d97e976..4b47f54f4 100644
--- a/Tools/qmake/projects/run_cmake.pro
+++ b/Tools/qmake/projects/run_cmake.pro
@@ -73,6 +73,11 @@ build_pass|!debug_and_release {
}
exists($$QMAKE_MAC_SDK_PATH): CMAKE_CONFIG += CMAKE_OSX_SYSROOT=$$QMAKE_MAC_SDK_PATH
!isEmpty(QMAKE_MACOSX_DEPLOYMENT_TARGET): CMAKE_CONFIG += CMAKE_OSX_DEPLOYMENT_TARGET=$$QMAKE_MACOSX_DEPLOYMENT_TARGET
+
+ # Hack: install frameworks in debug_and_release in separate prefixes
+ debug_and_release:build_all:CONFIG(debug, debug|release) {
+ CMAKE_CONFIG += CMAKE_INSTALL_PREFIX=\"$$[QT_INSTALL_PREFIX]/debug\"
+ }
}
equals(QMAKE_HOST.os, Windows) {
@@ -112,17 +117,13 @@ build_pass|!debug_and_release {
QMAKE_EXTRA_TARGETS += default_target
# When debug and release are built at the same time, don't install data files twice
- debug_and_release:build_all:CONFIG(debug, debug|release) {
- cmake_install_args = "-DCOMPONENT=Code"
- # TODO: Fix macOS frameworks installation in debug_and_release
- macos: destdir_suffix = "/debug"
- }
+ debug_and_release:build_all:CONFIG(debug, debug|release): cmake_install_args = "-DCOMPONENT=Code"
install_impl_target.target = install_impl
install_impl_target.commands = cd $$cmake_build_dir && cmake $$cmake_install_args -P cmake_install.cmake
QMAKE_EXTRA_TARGETS += install_impl_target
install_target.target = install
- install_target.commands = $(MAKE) -f $(MAKEFILE) install_impl $$make_args DESTDIR=$(INSTALL_ROOT)$$destdir_suffix
+ install_target.commands = $(MAKE) -f $(MAKEFILE) install_impl $$make_args DESTDIR=$(INSTALL_ROOT)
QMAKE_EXTRA_TARGETS += install_target
}