mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
a0292b4e5f
Large parts the library weren't being used, and the parts that were was overly
abstracted for our use case. Additionally, part of its use case was to abstract
pkgconfig boilerplate, which is no longer needed as pkgconfig has been removed
in favor of relying on cmake alone in 09118052ce
.
6 lines
253 B
CMake
6 lines
253 B
CMake
find_path(LIBTERMKEY_INCLUDE_DIR termkey.h)
|
|
find_library(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)
|