You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
347 B
9 lines
347 B
9 years ago
|
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_path(PrefixInPATH_INCLUDE_DIR NAMES PrefixInPATH.h)
|
||
|
message(STATUS "PrefixInPATH_INCLUDE_DIR='${PrefixInPATH_INCLUDE_DIR}'")
|
||
|
endforeach()
|
||
|
set(ENV{PATH} "${ENV_PATH}")
|