neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit aaea48aac6e227314ec08acec2a4c3c84538cab8
parent f3476f2f99debdd7d736d4f3ef9d6219ee18f660
Author: dundargoc <33953936+dundargoc@users.noreply.github.com>
Date:   Sun, 26 Feb 2023 13:32:37 +0100

build: set libtermkey project language to C (#22410)

This will prevent cmake from failing the build if a C++ compiler isn't
found.
Diffstat:
Mcmake.deps/cmake/LibvtermCMakeLists.txt | 2+-
Mcmake.deps/cmake/TreesitterCMakeLists.txt | 2+-
Mcmake.deps/cmake/libtermkeyCMakeLists.txt | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/cmake.deps/cmake/LibvtermCMakeLists.txt b/cmake.deps/cmake/LibvtermCMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(libvterm LANGUAGES C) +project(libvterm C) include(GNUInstallDirs) diff --git a/cmake.deps/cmake/TreesitterCMakeLists.txt b/cmake.deps/cmake/TreesitterCMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(tree-sitter LANGUAGES C) +project(tree-sitter C) add_library(tree-sitter lib/src/lib.c) target_include_directories(tree-sitter diff --git a/cmake.deps/cmake/libtermkeyCMakeLists.txt b/cmake.deps/cmake/libtermkeyCMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(libtermkey) +project(libtermkey C) add_definitions(-D _CRT_SECURE_NO_WARNINGS) add_definitions(-DHAVE_UNIBILIUM)