mirror of
https://github.com/neovim/neovim.git
synced 2025-01-01 17:23:36 -07:00
24 lines
620 B
CMake
24 lines
620 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(tree-sitter LANGUAGES C)
|
|
|
|
file(GLOB SRC_FILES ${PROJECT_SOURCE_DIR}/lib/src/*.c)
|
|
foreach(sfile ${SRC_FILES})
|
|
get_filename_component(f ${sfile} NAME)
|
|
if(${f} MATCHES "lib.c$")
|
|
list(REMOVE_ITEM SRC_FILES ${sfile})
|
|
endif()
|
|
endforeach()
|
|
include_directories(${PROJECT_SOURCE_DIR}/lib/include)
|
|
add_library(tree-sitter ${SRC_FILES})
|
|
|
|
install(FILES
|
|
lib/include/tree_sitter/api.h
|
|
lib/include/tree_sitter/parser.h
|
|
DESTINATION include/tree_sitter)
|
|
|
|
include(GNUInstallDirs)
|
|
install(TARGETS tree-sitter
|
|
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
|
|
|
# vim: set ft=cmake:
|