blob: 0fff24181c7d4e6be173bae50f0f3d0a2e586072 [file] [log] [blame] [edit]
set(CMAKE_FIND_REQUIRED ON)
find_path(PATH_doNotExists_Optional
NAMES doNotExists.h
OPTIONAL
)
find_path(PATH_doNotExists_OptionalRequired
NAMES doNotExists.h
OPTIONAL
REQUIRED
)
find_path(PATH_doNotExists
NAMES doNotExists.h
)