mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +00:00
The benefits are primarily being able to use FetchContent, which allows for a more flexible dependency handling. Other various quality-of-life features such as `-B` and `-S` flags are also included. This also removes broken `--version` generation as it does not work for version 3.10 and 3.11 due to the `JOIN` generator expression. Reference: https://github.com/neovim/neovim/issues/24004
34 lines
788 B
CMake
34 lines
788 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
# Can be removed once minimum version is at least 3.15
|
|
if(POLICY CMP0092)
|
|
cmake_policy(SET CMP0092 NEW)
|
|
endif()
|
|
project(${PARSERLANG} C)
|
|
|
|
add_compile_options(-w)
|
|
set(CMAKE_C_STANDARD 99)
|
|
|
|
add_library(markdown MODULE
|
|
tree-sitter-markdown/src/parser.c
|
|
tree-sitter-markdown/src/scanner.c)
|
|
target_include_directories(markdown
|
|
PRIVATE
|
|
tree-sitter-markdown/src)
|
|
|
|
add_library(markdown_inline MODULE
|
|
tree-sitter-markdown-inline/src/parser.c
|
|
tree-sitter-markdown-inline/src/scanner.c)
|
|
target_include_directories(markdown_inline
|
|
PRIVATE
|
|
tree-sitter-markdown-inline/src)
|
|
|
|
set_target_properties(
|
|
markdown markdown_inline
|
|
PROPERTIES
|
|
PREFIX ""
|
|
)
|
|
|
|
install(TARGETS markdown markdown_inline LIBRARY DESTINATION lib/nvim/parser)
|
|
|
|
# vim: set ft=cmake:
|