mirror of
https://github.com/reactos/CMake.git
synced 2024-12-14 23:29:57 +00:00
ffc06c1239
The find_package command already knows how to compute installation prefixes from PATH. Use the same approach to establish prefixes for find_library, find_file, and find_path to use to look in directories like "<prefix>/lib[/<arch>]" and "<prefix>/include" for libraries and headers. This will reduce the amount of configuration end users need to do to establish a work environment rooted under a specific prefix.
9 lines
347 B
CMake
9 lines
347 B
CMake
set(ENV_PATH "$ENV{PATH}")
|
|
foreach(path "/does_not_exist" "" "/bin" "/sbin")
|
|
unset(PrefixInPATH_INCLUDE_DIR CACHE)
|
|
set(ENV{PATH} "${CMAKE_CURRENT_SOURCE_DIR}${path}")
|
|
find_file(PrefixInPATH_INCLUDE_DIR NAMES PrefixInPATH.h)
|
|
message(STATUS "PrefixInPATH_INCLUDE_DIR='${PrefixInPATH_INCLUDE_DIR}'")
|
|
endforeach()
|
|
set(ENV{PATH} "${ENV_PATH}")
|