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.

13 lines
234 B

find_path(PATH_exists
NAMES PrefixInPATH.h
PATHS ${CMAKE_CURRENT_SOURCE_DIR}/include
NO_DEFAULT_PATH
REQUIRED
)
message(STATUS "PATH_exists='${PATH_exists}'")
find_path(PATH_doNotExists
NAMES doNotExists.h
REQUIRED
)