CMake: Fix configure -developer-build
Configure now translates -developer-build to INPUT_developer_build without setting FEATURE_developer_build. The install prefix determination code in QtSetup.cmake happens much earlier than the feature evaluation. As the developer_build feature is merely a switch that's supposed to be flipped by the user, we can just translate the INPUT_developer_build value to FEATURE_developer_build in QtSetup.cmake. Fixes: QTBUG-88318 Change-Id: I57918232359e2e367e41b779d3f4737731dd76e5 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
parent
9bade12c2c
commit
41d948c50b
@ -54,6 +54,12 @@ set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
||||
# Do not relink dependent libraries when no header has changed:
|
||||
set(CMAKE_LINK_DEPENDS_NO_SHARED ON)
|
||||
|
||||
# Pre-calculate the developer_build feature if it's set by the user via INPUT_developer_build
|
||||
if(NOT FEATURE_developer_build AND INPUT_developer_build
|
||||
AND NOT "${INPUT_developer_build}" STREQUAL "undefined")
|
||||
set(FEATURE_developer_build ON)
|
||||
endif()
|
||||
|
||||
# Detect non-prefix builds: either when the qtbase install prefix is set to the binary dir
|
||||
# or when a developer build is explicitly enabled and no install prefix is specified.
|
||||
# This detection only happens when building qtbase, and later is propagated via the generated
|
||||
|
Loading…
x
Reference in New Issue
Block a user