Commit 60935a50 authored by Samuli Piippo's avatar Samuli Piippo
Browse files

Workaround for broken recursive qmake call


Running qmake recursively does not take .depends into account and goes
through the SUBDIRS in the order they were added. Because of this, the
qmake_extras.gypi is generated in wrong order and is not used by ninja
later on. This causes cross compilation to fail.

Task-number: QTBUG-45706
Change-Id: I476930233824d5414e35151e6b9a2695abb4e9dd
Reviewed-by: default avatarJoerg Bornemann <joerg.bornemann@theqtcompany.com>
Showing with 5 additions and 4 deletions
...@@ -15,10 +15,7 @@ core_api.depends = gyp_run ...@@ -15,10 +15,7 @@ core_api.depends = gyp_run
core_module.file = core_module.pro core_module.file = core_module.pro
core_module.depends = core_api core_module.depends = core_api
SUBDIRS += core_gyp_generator \ SUBDIRS += core_gyp_generator
gyp_run \
core_api \
core_module
!win32 { !win32 {
# gyp_configure_host.pro and gyp_configure_target.pro are phony pro files that # gyp_configure_host.pro and gyp_configure_target.pro are phony pro files that
...@@ -32,3 +29,7 @@ SUBDIRS += core_gyp_generator \ ...@@ -32,3 +29,7 @@ SUBDIRS += core_gyp_generator \
gyp_run.depends += gyp_configure_host gyp_configure_target gyp_run.depends += gyp_configure_host gyp_configure_target
SUBDIRS += gyp_configure_host gyp_configure_target SUBDIRS += gyp_configure_host gyp_configure_target
} }
SUBDIRS += gyp_run \
core_api \
core_module
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment