Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
RunCMake
/
find_library
/
Optional.cmake
blob: 05cc8d06625d76e382bf806eefd37417e7002c5c [
file
]
set
(
CMAKE_FIND_REQUIRED ON
)
find_library
(
LIB_doNotExists_Optional
NAMES doNotExists
OPTIONAL
)
find_library
(
LIB_doNotExists_OptionalRequired
NAMES doNotExists
OPTIONAL
REQUIRED
)
find_library
(
LIB_doNotExists
NAMES doNotExists
)