Merge topic 'FindBoost-no-system-env-paths'
5a9b2b3b
FindBoost: Fix Boost_NO_SYSTEM_PATHS to not consider environment (#15702)
This commit is contained in:
commit
c212b5b025
|
@ -982,7 +982,7 @@ if(NOT Boost_INCLUDE_DIR)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if( Boost_NO_SYSTEM_PATHS)
|
if( Boost_NO_SYSTEM_PATHS)
|
||||||
list(APPEND _boost_INCLUDE_SEARCH_DIRS NO_CMAKE_SYSTEM_PATH)
|
list(APPEND _boost_INCLUDE_SEARCH_DIRS NO_CMAKE_SYSTEM_PATH NO_SYSTEM_ENVIRONMENT_PATH)
|
||||||
else()
|
else()
|
||||||
list(APPEND _boost_INCLUDE_SEARCH_DIRS PATHS
|
list(APPEND _boost_INCLUDE_SEARCH_DIRS PATHS
|
||||||
C:/boost/include
|
C:/boost/include
|
||||||
|
@ -1251,7 +1251,7 @@ foreach(c DEBUG RELEASE)
|
||||||
${Boost_INCLUDE_DIR}/stage/lib
|
${Boost_INCLUDE_DIR}/stage/lib
|
||||||
)
|
)
|
||||||
if( Boost_NO_SYSTEM_PATHS )
|
if( Boost_NO_SYSTEM_PATHS )
|
||||||
list(APPEND _boost_LIBRARY_SEARCH_DIRS_${c} NO_CMAKE_SYSTEM_PATH)
|
list(APPEND _boost_LIBRARY_SEARCH_DIRS_${c} NO_CMAKE_SYSTEM_PATH NO_SYSTEM_ENVIRONMENT_PATH)
|
||||||
else()
|
else()
|
||||||
list(APPEND _boost_LIBRARY_SEARCH_DIRS_${c} PATHS
|
list(APPEND _boost_LIBRARY_SEARCH_DIRS_${c} PATHS
|
||||||
C:/boost/lib
|
C:/boost/lib
|
||||||
|
|
Loading…
Reference in New Issue