aboutsummaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorGregory Anders <8965202+gpanders@users.noreply.github.com>2023-11-30 13:56:54 -0600
committerGitHub <noreply@github.com>2023-11-30 13:56:54 -0600
commit5e1ff4302f2b167d4f73c50c47f7ace97f442eca (patch)
tree55f2ec9900cffa0703fb5062a3bfc3ae235ff5eb /cmake
parent307d5bcc7940d14f7d17e7c2de795ebed7b0f00c (diff)
parent5d3562d810850ee99c6352f345749d34a08a66d1 (diff)
downloadrneovim-5e1ff4302f2b167d4f73c50c47f7ace97f442eca.tar.gz
rneovim-5e1ff4302f2b167d4f73c50c47f7ace97f442eca.tar.bz2
rneovim-5e1ff4302f2b167d4f73c50c47f7ace97f442eca.zip
Merge pull request #25870 from dundargoc/build/libtermkey
build: vendor libtermkey
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindLibtermkey.cmake9
1 files changed, 0 insertions, 9 deletions
diff --git a/cmake/FindLibtermkey.cmake b/cmake/FindLibtermkey.cmake
deleted file mode 100644
index 8039ae7994..0000000000
--- a/cmake/FindLibtermkey.cmake
+++ /dev/null
@@ -1,9 +0,0 @@
-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})