mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
b80a8e2c16
Ensure bundled libraries and include directories are always searched first before any others. This will provide a more consistent experience as the search order of the builtin find_ functions can vary depending on system. This should make the build process faster when building with bundled deps as we limit the search to only the .deps directory. Separating the search between .deps and everything makes debugging find_-related problems simpler if you need to check how dependencies are found. For libraries, we divide the search process into the following order: 1. Only search in .deps directory and only search for static libraries. 2. Only search in .deps directory and search for all libraries. 3. Search everywhere and search for all libraries. Make an exception for FindLibintl.cmake as changing the search order seems to break some tests on macos.
10 lines
445 B
CMake
10 lines
445 B
CMake
find_path2(LIBTERMKEY_INCLUDE_DIR termkey.h)
|
|
find_library2(LIBTERMKEY_LIBRARY NAMES termkey)
|
|
find_package_handle_standard_args(Libtermkey DEFAULT_MSG
|
|
LIBTERMKEY_LIBRARY LIBTERMKEY_INCLUDE_DIR)
|
|
mark_as_advanced(LIBTERMKEY_INCLUDE_DIR LIBTERMKEY_LIBRARY)
|
|
|
|
add_library(libtermkey INTERFACE)
|
|
target_include_directories(libtermkey SYSTEM BEFORE INTERFACE ${LIBTERMKEY_INCLUDE_DIR})
|
|
target_link_libraries(libtermkey INTERFACE ${LIBTERMKEY_LIBRARY})
|