diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-01-24 16:43:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 16:43:29 +0100 |
commit | cd613712b1a8db233f95f173333b46ebd9df7c9f (patch) | |
tree | 7844a6c7e761e8684eea527599b2da1b420ea9e6 /src | |
parent | 51863b2d66bc5b2420a56959d0fcdbdb8a1e993e (diff) | |
download | rneovim-cd613712b1a8db233f95f173333b46ebd9df7c9f.tar.gz rneovim-cd613712b1a8db233f95f173333b46ebd9df7c9f.tar.bz2 rneovim-cd613712b1a8db233f95f173333b46ebd9df7c9f.zip |
build: use cmake to build treesitter on all platforms (#21984)
This reduces platform-specific differences and the amount of code.
Diffstat (limited to 'src')
-rwxr-xr-x | src/nvim/CMakeLists.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 0929aeeb2a..2361210e59 100755 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -684,8 +684,6 @@ foreach(hfile ${NVIM_GENERATED_FOR_HEADERS}) endif() endforeach() -# Our dependencies come first. - if (CMAKE_SYSTEM_NAME MATCHES "OpenBSD") target_link_libraries(main_lib INTERFACE pthread c++abi) endif() |