mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
81f2bce775
- Change libtermkeyCMakeLists.txt to LibtermkeyCMakeLists.txt - Remove duplicate mark_as_advanced calls in FindLibuv.cmake - Fix "Enabling Clang sanitizer" messages as it's no longer clang-only - Simplify parser installation syntax - Rename tree-sitter to treesitter
21 lines
613 B
CMake
21 lines
613 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(libtermkey C)
|
|
|
|
add_definitions(-D _CRT_SECURE_NO_WARNINGS)
|
|
add_definitions(-DHAVE_UNIBILIUM)
|
|
|
|
include_directories(${PROJECT_BINARY_DIR}/t)
|
|
include_directories(SYSTEM ${UNIBILIUM_INCLUDE_DIRS})
|
|
|
|
add_library(termkey termkey.c driver-csi.c driver-ti.c)
|
|
set_target_properties(termkey PROPERTIES
|
|
PUBLIC_HEADER ${PROJECT_SOURCE_DIR}/termkey.h)
|
|
target_link_libraries(termkey ${UNIBILIUM_LIBRARIES})
|
|
|
|
include(GNUInstallDirs)
|
|
install(TARGETS termkey
|
|
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
|
|
|
|
# vim: set ft=cmake:
|