Skip to content

Commit a9edd25

Browse files
committed
Check variables for flush
Check change of HUNTER_CONFIGURATION_TYPES and HUNTER_BUILD_SHARED_LIBS variables before Toolchain-ID calculation because it can be skipped by HUNTER_NO_TOOLCHAIN_ID_RECALCULATION.
1 parent 0b9b457 commit a9edd25

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

cmake/modules/hunter_initialize.cmake

+28
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,34 @@ macro(hunter_initialize)
7373
set(_flush TRUE)
7474
endif()
7575

76+
string(
77+
COMPARE
78+
EQUAL
79+
"${HUNTER_CACHED_CONFIGURATION_TYPES}"
80+
"${HUNTER_CONFIGURATION_TYPES}"
81+
_is_ok
82+
)
83+
if(NOT _is_ok)
84+
hunter_status_debug("HUNTER_CONFIGURATION_TYPES changed:")
85+
hunter_status_debug(" ${HUNTER_CACHED_CONFIGURATION_TYPES}")
86+
hunter_status_debug(" ${HUNTER_CONFIGURATION_TYPES}")
87+
set(_flush TRUE)
88+
endif()
89+
90+
string(
91+
COMPARE
92+
EQUAL
93+
"${HUNTER_CACHED_BUILD_SHARED_LIBS}"
94+
"${HUNTER_BUILD_SHARED_LIBS}"
95+
_is_ok
96+
)
97+
if(NOT _is_ok)
98+
hunter_status_debug("HUNTER_BUILD_SHARED_LIBS changed:")
99+
hunter_status_debug(" ${HUNTER_CACHED_BUILD_SHARED_LIBS}")
100+
hunter_status_debug(" ${HUNTER_BUILD_SHARED_LIBS}")
101+
set(_flush TRUE)
102+
endif()
103+
76104
if(_flush)
77105
set(HUNTER_CACHED_ROOT "${HUNTER_GATE_ROOT}" CACHE INTERNAL "")
78106
set(HUNTER_VERSION "${HUNTER_GATE_VERSION}" CACHE INTERNAL "")

0 commit comments

Comments
 (0)