2017-12-27 11:30:23 -07:00
|
|
|
# CMAKE REFERENCE
|
|
|
|
# intro: https://codingnest.com/basic-cmake/
|
|
|
|
# best practices (3.0+): https://gist.github.com/mbinna/c61dbb39bca0e4fb7d1f73b0d66a4fd1
|
2022-10-09 05:21:52 -07:00
|
|
|
# pitfalls: https://izzys.casa/2019/02/everything-you-never-wanted-to-know-about-cmake/
|
2017-12-27 11:30:23 -07:00
|
|
|
|
2023-02-18 02:47:22 -07:00
|
|
|
# Version should match the tested CMAKE_URL in .github/workflows/build.yml.
|
2023-10-14 04:12:48 -07:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2022-11-12 05:34:14 -07:00
|
|
|
|
|
|
|
# Can be removed once minimum version is at least 3.15
|
|
|
|
if(POLICY CMP0092)
|
|
|
|
cmake_policy(SET CMP0092 NEW)
|
|
|
|
endif()
|
|
|
|
|
2018-06-15 05:33:07 -07:00
|
|
|
project(nvim C)
|
2014-01-31 06:39:15 -07:00
|
|
|
|
2023-05-18 07:27:47 -07:00
|
|
|
if(POLICY CMP0135)
|
|
|
|
cmake_policy(SET CMP0135 NEW)
|
|
|
|
endif()
|
2019-10-01 18:44:57 -07:00
|
|
|
|
2014-02-24 13:54:45 -07:00
|
|
|
# Point CMake at any custom modules we may ship
|
2014-11-10 17:26:01 -07:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
|
2014-02-24 13:54:45 -07:00
|
|
|
|
2023-01-10 10:49:57 -07:00
|
|
|
include(CheckCCompilerFlag)
|
|
|
|
include(CheckCSourceCompiles)
|
2023-05-13 03:12:29 -07:00
|
|
|
include(CheckLibraryExists)
|
2023-05-18 07:27:47 -07:00
|
|
|
include(ExternalProject)
|
2023-03-02 02:22:41 -07:00
|
|
|
include(FindPackageHandleStandardArgs)
|
2023-05-13 03:12:29 -07:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
2023-05-18 07:27:47 -07:00
|
|
|
include(Deps)
|
2023-10-10 14:18:45 -07:00
|
|
|
include(Find)
|
2023-01-10 10:49:57 -07:00
|
|
|
include(InstallHelpers)
|
2016-10-11 15:35:02 -07:00
|
|
|
include(PreventInTreeBuilds)
|
2022-06-30 05:10:05 -07:00
|
|
|
include(Util)
|
|
|
|
|
2023-05-21 11:57:39 -07:00
|
|
|
set_directory_properties(PROPERTIES
|
|
|
|
EP_PREFIX "${DEPS_BUILD_DIR}")
|
|
|
|
|
2022-06-30 05:10:05 -07:00
|
|
|
set(TOUCHES_DIR ${PROJECT_BINARY_DIR}/touches)
|
2016-10-11 15:35:02 -07:00
|
|
|
|
2023-01-29 09:02:34 -07:00
|
|
|
find_program(CCACHE_PRG ccache)
|
|
|
|
if(CCACHE_PRG)
|
|
|
|
set(CMAKE_C_COMPILER_LAUNCHER ${CMAKE_COMMAND} -E env CCACHE_SLOPPINESS=pch_defines,time_macros ${CCACHE_PRG})
|
|
|
|
endif()
|
|
|
|
|
2023-04-14 10:19:49 -07:00
|
|
|
if(NOT CI_BUILD)
|
|
|
|
set(CMAKE_INSTALL_MESSAGE NEVER)
|
|
|
|
endif()
|
|
|
|
|
2023-11-20 08:49:48 -07:00
|
|
|
if(${CMAKE_VERSION} VERSION_LESS 3.20)
|
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
endif()
|
|
|
|
|
2014-03-03 08:09:06 -07:00
|
|
|
# Prefer our bundled versions of dependencies.
|
2018-03-11 05:15:42 -07:00
|
|
|
if(DEFINED ENV{DEPS_BUILD_DIR})
|
2023-02-26 14:32:08 -07:00
|
|
|
set(DEPS_PREFIX "$ENV{DEPS_BUILD_DIR}/usr" CACHE PATH "Path prefix for finding dependencies")
|
2018-03-11 05:15:42 -07:00
|
|
|
else()
|
2023-02-26 14:32:08 -07:00
|
|
|
set(DEPS_PREFIX "${CMAKE_CURRENT_SOURCE_DIR}/.deps/usr" CACHE PATH "Path prefix for finding dependencies")
|
2018-06-10 07:57:12 -07:00
|
|
|
# When running from within CLion or Visual Studio,
|
|
|
|
# build bundled dependencies automatically.
|
|
|
|
if(NOT EXISTS ${DEPS_PREFIX}
|
|
|
|
AND (DEFINED ENV{CLION_IDE}
|
|
|
|
OR DEFINED ENV{VisualStudioEdition}))
|
|
|
|
message(STATUS "Building dependencies...")
|
|
|
|
set(DEPS_BUILD_DIR ${PROJECT_BINARY_DIR}/.deps)
|
|
|
|
file(MAKE_DIRECTORY ${DEPS_BUILD_DIR})
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${CMAKE_COMMAND} -G ${CMAKE_GENERATOR}
|
2023-02-08 03:00:16 -07:00
|
|
|
-D CMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}
|
|
|
|
-D CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
|
|
|
|
-D CMAKE_C_COMPILER=${CMAKE_C_COMPILER}
|
|
|
|
-D CMAKE_C_FLAGS=${CMAKE_C_FLAGS}
|
|
|
|
-D CMAKE_C_FLAGS_DEBUG=${CMAKE_C_FLAGS_DEBUG}
|
|
|
|
-D CMAKE_C_FLAGS_MINSIZEREL=${CMAKE_C_FLAGS_MINSIZEREL}
|
|
|
|
-D CMAKE_C_FLAGS_RELWITHDEBINFO=${CMAKE_C_FLAGS_RELWITHDEBINFO}
|
|
|
|
-D CMAKE_C_FLAGS_RELEASE=${CMAKE_C_FLAGS_RELEASE}
|
|
|
|
-D CMAKE_MAKE_PROGRAM=${CMAKE_MAKE_PROGRAM}
|
2022-06-27 03:08:59 -07:00
|
|
|
${PROJECT_SOURCE_DIR}/cmake.deps
|
2018-06-10 07:57:12 -07:00
|
|
|
WORKING_DIRECTORY ${DEPS_BUILD_DIR})
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${CMAKE_COMMAND} --build ${DEPS_BUILD_DIR}
|
|
|
|
--config ${CMAKE_BUILD_TYPE})
|
|
|
|
set(DEPS_PREFIX ${DEPS_BUILD_DIR}/usr)
|
|
|
|
endif()
|
2018-03-11 05:15:42 -07:00
|
|
|
endif()
|
2018-06-10 07:57:12 -07:00
|
|
|
|
2022-06-12 15:11:14 -07:00
|
|
|
list(INSERT CMAKE_PREFIX_PATH 0 ${DEPS_PREFIX})
|
2014-03-03 08:09:06 -07:00
|
|
|
|
2023-03-02 14:50:43 -07:00
|
|
|
if(APPLE)
|
2022-07-19 07:10:59 -07:00
|
|
|
# If the macOS deployment target is not set manually (via $MACOSX_DEPLOYMENT_TARGET),
|
|
|
|
# fall back to local system version. Needs to be done both here and in cmake.deps.
|
|
|
|
if(NOT CMAKE_OSX_DEPLOYMENT_TARGET)
|
|
|
|
execute_process(COMMAND sw_vers -productVersion
|
|
|
|
OUTPUT_VARIABLE MACOS_VERSION
|
|
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
set(CMAKE_OSX_DEPLOYMENT_TARGET "${MACOS_VERSION}")
|
|
|
|
endif()
|
2023-01-10 10:49:57 -07:00
|
|
|
message(STATUS "Using deployment target ${CMAKE_OSX_DEPLOYMENT_TARGET}")
|
2017-01-17 08:32:41 -07:00
|
|
|
endif()
|
2015-03-26 20:30:45 -07:00
|
|
|
|
2023-03-02 14:50:43 -07:00
|
|
|
if(WIN32 OR APPLE)
|
2021-02-23 21:54:12 -07:00
|
|
|
# Ignore case when comparing filenames on Windows and Mac.
|
|
|
|
set(CASE_INSENSITIVE_FILENAME TRUE)
|
2017-01-17 08:32:41 -07:00
|
|
|
# Enable fixing case-insensitive filenames for Windows and Mac.
|
2015-03-26 20:30:45 -07:00
|
|
|
set(USE_FNAME_CASE TRUE)
|
2014-11-08 14:16:39 -07:00
|
|
|
endif()
|
|
|
|
|
2022-05-17 06:08:24 -07:00
|
|
|
if (MINGW)
|
|
|
|
# Disable LTO by default as it may not compile
|
|
|
|
# See https://github.com/Alexpux/MINGW-packages/issues/3516
|
|
|
|
# and https://github.com/neovim/neovim/pull/8654#issuecomment-402316672
|
|
|
|
option(ENABLE_LTO "enable link time optimization" OFF)
|
|
|
|
else()
|
|
|
|
option(ENABLE_LTO "enable link time optimization" ON)
|
|
|
|
endif()
|
2018-06-01 11:17:24 -07:00
|
|
|
|
2019-02-15 13:18:16 -07:00
|
|
|
message(STATUS "CMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}")
|
|
|
|
|
2022-09-06 07:52:39 -07:00
|
|
|
set_default_buildtype()
|
2023-05-18 07:27:47 -07:00
|
|
|
get_property(isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
|
|
|
|
if(NOT isMultiConfig)
|
|
|
|
# Unlike build dependencies in cmake.deps, we assume we want dev dependencies
|
|
|
|
# such as Uncrustify to always be built with Release.
|
|
|
|
list(APPEND DEPS_CMAKE_ARGS -D CMAKE_BUILD_TYPE=Release)
|
|
|
|
endif()
|
2015-12-19 20:58:47 -07:00
|
|
|
|
2015-12-13 10:29:02 -07:00
|
|
|
# If not in a git repo (e.g., a tarball) these tokens define the complete
|
2016-10-26 06:20:00 -07:00
|
|
|
# version string, else they are combined with the result of `git describe`.
|
2014-10-04 15:32:47 -07:00
|
|
|
set(NVIM_VERSION_MAJOR 0)
|
2023-04-07 04:35:22 -07:00
|
|
|
set(NVIM_VERSION_MINOR 10)
|
2018-12-30 16:44:49 -07:00
|
|
|
set(NVIM_VERSION_PATCH 0)
|
2023-04-07 04:35:22 -07:00
|
|
|
set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers
|
2015-09-28 03:17:19 -07:00
|
|
|
|
2016-10-26 06:20:00 -07:00
|
|
|
# API level
|
2023-07-10 16:15:46 -07:00
|
|
|
set(NVIM_API_LEVEL 12) # Bump this after any API change.
|
2016-10-26 06:20:00 -07:00
|
|
|
set(NVIM_API_LEVEL_COMPAT 0) # Adjust this after a _breaking_ API change.
|
2023-07-10 16:15:46 -07:00
|
|
|
set(NVIM_API_PRERELEASE true)
|
api: Nvim version, API level #5386
The API level is disconnected from the NVIM version. The API metadata
holds the current API level, and the lowest backwards-compatible level
supported by this instance.
Release 0.1.6 will be the first release reporting the Nvim version and
API level.
metadata['version'] = {
major: 0,
minor: 1,
patch: 6,
prerelease: true,
api_level: 1,
api_compatible: 0,
}
The API level may remain unchanged across Neovim releases if the API has
not changed.
When changing the API the CMake variable NVIM_API_PRERELEASE is set to
true, and NVIM_API_CURRENT/NVIM_API_COMPATIBILITY are incremented
accordingly.
The functional tests check the API table against fixtures of past
versions of Neovim. It compares all the functions in the old table with
the new one, it does ignore some metadata attributes that do not alter
the function signature or were removed since 0.1.5. Currently the only
fixture is 0.mpack, generated from Neovim 0.1.5 with nvim --api-info.
2016-09-25 10:46:37 -07:00
|
|
|
|
2017-10-20 17:30:21 -07:00
|
|
|
# Build-type: RelWithDebInfo
|
2023-02-27 12:14:10 -07:00
|
|
|
# /Og means something different in MSVC
|
|
|
|
if(CMAKE_C_COMPILER_ID MATCHES "GNU" OR CMAKE_C_COMPILER_ID MATCHES "Clang")
|
|
|
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} -Og -g")
|
2017-10-20 17:30:21 -07:00
|
|
|
endif()
|
|
|
|
# We _want_ assertions in RelWithDebInfo build-type.
|
|
|
|
if(CMAKE_C_FLAGS_RELWITHDEBINFO MATCHES DNDEBUG)
|
2017-06-29 00:29:40 -07:00
|
|
|
string(REPLACE "-DNDEBUG" "" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}")
|
2023-02-19 07:06:53 -07:00
|
|
|
string(REPLACE "/DNDEBUG" "" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}")
|
2023-03-04 12:04:01 -07:00
|
|
|
string(REPLACE " " " " CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}") # Remove duplicate whitespace
|
2015-09-28 03:14:38 -07:00
|
|
|
endif()
|
|
|
|
|
2023-03-16 11:24:04 -07:00
|
|
|
option(ENABLE_ASAN_UBSAN "Enable Clang address & undefined behavior sanitizer for nvim binary." OFF)
|
|
|
|
option(ENABLE_MSAN "Enable Clang memory sanitizer for nvim binary." OFF)
|
|
|
|
option(ENABLE_TSAN "Enable Clang thread sanitizer for nvim binary." OFF)
|
2015-06-09 01:43:22 -07:00
|
|
|
|
2023-03-16 11:24:04 -07:00
|
|
|
if((ENABLE_ASAN_UBSAN AND ENABLE_MSAN)
|
|
|
|
OR (ENABLE_ASAN_UBSAN AND ENABLE_TSAN)
|
|
|
|
OR (ENABLE_MSAN AND ENABLE_TSAN))
|
2018-10-06 09:45:34 -07:00
|
|
|
message(FATAL_ERROR "Sanitizers cannot be enabled simultaneously")
|
2015-06-08 09:49:23 -07:00
|
|
|
endif()
|
2015-06-09 01:43:22 -07:00
|
|
|
|
2016-01-08 19:40:57 -07:00
|
|
|
# Place targets in bin/ or lib/ for all build configurations
|
2014-03-03 08:09:06 -07:00
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
|
2014-11-30 19:22:46 -07:00
|
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
|
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
|
2016-01-08 19:40:57 -07:00
|
|
|
foreach(CFGNAME ${CMAKE_CONFIGURATION_TYPES})
|
|
|
|
string(TOUPPER ${CFGNAME} CFGNAME)
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_${CFGNAME} ${CMAKE_BINARY_DIR}/bin)
|
|
|
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_${CFGNAME} ${CMAKE_BINARY_DIR}/lib)
|
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_${CFGNAME} ${CMAKE_BINARY_DIR}/lib)
|
|
|
|
endforeach()
|
2014-02-22 08:30:50 -07:00
|
|
|
|
2023-11-12 14:04:15 -07:00
|
|
|
if(NOT PREFER_LUA)
|
|
|
|
find_program(LUA_PRG NAMES luajit)
|
|
|
|
endif()
|
|
|
|
find_program(LUA_PRG NAMES lua5.1 lua5.2 lua)
|
2023-04-20 04:19:38 -07:00
|
|
|
if(NOT LUA_PRG)
|
2018-10-06 09:45:34 -07:00
|
|
|
message(FATAL_ERROR "Failed to find a Lua 5.1-compatible interpreter")
|
2014-04-13 03:06:35 -07:00
|
|
|
endif()
|
2018-10-06 09:45:34 -07:00
|
|
|
message(STATUS "Using Lua interpreter: ${LUA_PRG}")
|
2014-04-13 03:06:35 -07:00
|
|
|
|
2023-01-23 02:26:46 -07:00
|
|
|
# Some of the code generation still relies on stable table ordering in order to
|
|
|
|
# produce reproducible output - specifically the msgpack'ed data in
|
|
|
|
# funcs_metadata.generated.h and ui_events_metadata.generated.h. This should
|
|
|
|
# ideally be fixed in the generators, but until then as a workaround you may provide
|
|
|
|
# a specific lua implementation that provides the needed stability by setting LUA_GEN_PRG:
|
|
|
|
if(NOT LUA_GEN_PRG)
|
|
|
|
set(LUA_GEN_PRG "${LUA_PRG}" CACHE FILEPATH "Path to the lua used for code generation.")
|
|
|
|
endif()
|
|
|
|
message(STATUS "Using Lua interpreter for code generation: ${LUA_GEN_PRG}")
|
|
|
|
|
2022-06-25 10:24:48 -07:00
|
|
|
option(COMPILE_LUA "Pre-compile Lua sources into bytecode (for sources that are included in the binary)" ON)
|
2021-12-19 14:00:53 -07:00
|
|
|
if(COMPILE_LUA AND NOT WIN32)
|
2021-12-16 09:27:39 -07:00
|
|
|
if(PREFER_LUA)
|
|
|
|
foreach(CURRENT_LUAC_PRG luac5.1 luac)
|
|
|
|
find_program(_CHECK_LUAC_PRG ${CURRENT_LUAC_PRG})
|
|
|
|
if(_CHECK_LUAC_PRG)
|
|
|
|
set(LUAC_PRG "${_CHECK_LUAC_PRG} -s -o - %s" CACHE STRING "Format for compiling to Lua bytecode")
|
|
|
|
break()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
elseif(LUA_PRG MATCHES "luajit")
|
2021-12-18 20:59:02 -07:00
|
|
|
check_lua_module(${LUA_PRG} "jit.bcsave" LUAJIT_HAS_JIT_BCSAVE)
|
|
|
|
if(LUAJIT_HAS_JIT_BCSAVE)
|
|
|
|
set(LUAC_PRG "${LUA_PRG} -b -s %s -" CACHE STRING "Format for compiling to Lua bytecode")
|
|
|
|
endif()
|
2021-12-16 09:27:39 -07:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
if(LUAC_PRG)
|
|
|
|
message(STATUS "Using Lua compiler: ${LUAC_PRG}")
|
|
|
|
endif()
|
|
|
|
|
2022-06-12 15:08:01 -07:00
|
|
|
# Lint
|
2023-06-23 15:29:53 -07:00
|
|
|
option(CI_LINT "Abort if lint programs not found" OFF)
|
|
|
|
if(CI_LINT)
|
|
|
|
set(LINT_REQUIRED "REQUIRED")
|
|
|
|
endif()
|
|
|
|
find_program(SHELLCHECK_PRG shellcheck ${LINT_REQUIRED})
|
|
|
|
find_program(STYLUA_PRG stylua ${LINT_REQUIRED})
|
2022-06-30 05:10:05 -07:00
|
|
|
|
2022-11-01 06:29:17 -07:00
|
|
|
add_glob_target(
|
2022-06-30 05:10:05 -07:00
|
|
|
TARGET lintlua-luacheck
|
2023-09-05 02:49:08 -07:00
|
|
|
COMMAND $<TARGET_FILE:nvim>
|
|
|
|
FLAGS -ll ${PROJECT_SOURCE_DIR}/test/lua_runner.lua ${CMAKE_BINARY_DIR}/usr luacheck -q
|
2022-06-30 05:10:05 -07:00
|
|
|
GLOB_DIRS runtime/ scripts/ src/ test/
|
|
|
|
GLOB_PAT *.lua
|
2023-01-13 16:48:10 -07:00
|
|
|
TOUCH_STRATEGY SINGLE)
|
2023-09-05 02:49:08 -07:00
|
|
|
add_dependencies(lintlua-luacheck lua-dev-deps)
|
2022-06-30 05:10:05 -07:00
|
|
|
|
2023-11-12 09:20:39 -07:00
|
|
|
add_glob_target(
|
|
|
|
TARGET lintlua-stylua
|
|
|
|
COMMAND ${STYLUA_PRG}
|
|
|
|
FLAGS --color=always --check --respect-ignores
|
2023-12-04 15:32:39 -07:00
|
|
|
GLOB_DIRS runtime/ scripts/ src/ test/unit/
|
2023-11-12 09:20:39 -07:00
|
|
|
GLOB_PAT *.lua
|
|
|
|
TOUCH_STRATEGY SINGLE)
|
|
|
|
|
2022-06-30 05:10:05 -07:00
|
|
|
add_custom_target(lintlua)
|
|
|
|
add_dependencies(lintlua lintlua-luacheck lintlua-stylua)
|
2022-06-12 15:08:01 -07:00
|
|
|
|
2022-11-01 06:29:17 -07:00
|
|
|
add_glob_target(
|
2022-06-30 05:10:05 -07:00
|
|
|
TARGET lintsh
|
|
|
|
COMMAND ${SHELLCHECK_PRG}
|
2022-10-30 05:50:41 -07:00
|
|
|
FLAGS -x -a
|
2023-03-02 14:50:43 -07:00
|
|
|
GLOB_DIRS scripts
|
2022-10-30 05:50:41 -07:00
|
|
|
GLOB_PAT *.sh
|
2023-01-13 16:48:10 -07:00
|
|
|
TOUCH_STRATEGY SINGLE)
|
build: install with the correct permissions
The install() command will create the parent directories, but it does so
with the user's umask. We want to do our best to make sure the correct
permissions are being set, without clobbering existing permissions.
To do this, this commit introduces an install_helper(), which is similar
in signature to the install() command, to help ensure that directories
are created ahead of the actual install() command. This will attempt to
use 0644 permissions for files and 0755 permissions for directories by
default--though they can be overridden.
To make this work correctly, without trying to introduce some mechanism
with setting the umask, it meant that there's a small portion that makes
use of an "internal" version of the file() command. It has been tested
on CMake 2.8.11, 2.8.12, and 3.0.2, and works correctly on all versions.
This fixes #1201 and #1086.
2014-09-19 04:37:22 -07:00
|
|
|
|
2022-07-01 09:15:04 -07:00
|
|
|
add_custom_target(lintcommit
|
2023-04-22 08:37:45 -07:00
|
|
|
COMMAND $<TARGET_FILE:nvim> -u NONE -l ${PROJECT_SOURCE_DIR}/scripts/lintcommit.lua main)
|
2022-07-01 09:15:04 -07:00
|
|
|
add_dependencies(lintcommit nvim)
|
|
|
|
|
|
|
|
add_custom_target(lint)
|
2023-10-26 13:30:00 -07:00
|
|
|
add_dependencies(lint lintc lintlua lintsh lintcommit)
|
2022-07-01 09:15:04 -07:00
|
|
|
|
2022-08-02 03:32:57 -07:00
|
|
|
# Format
|
2023-12-04 12:21:38 -07:00
|
|
|
add_glob_target(
|
|
|
|
TARGET formatlua
|
|
|
|
COMMAND ${STYLUA_PRG}
|
|
|
|
FLAGS --respect-ignores
|
2023-12-04 15:32:39 -07:00
|
|
|
GLOB_DIRS runtime/ scripts/ src/ test/unit/
|
2023-12-04 12:21:38 -07:00
|
|
|
GLOB_PAT *.lua)
|
2022-08-02 03:32:57 -07:00
|
|
|
|
|
|
|
add_custom_target(format)
|
|
|
|
add_dependencies(format formatc formatlua)
|
|
|
|
|
2015-05-17 11:45:30 -07:00
|
|
|
install_helper(
|
2022-06-27 01:02:02 -07:00
|
|
|
FILES ${CMAKE_SOURCE_DIR}/src/man/nvim.1
|
2015-05-17 11:45:30 -07:00
|
|
|
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
|
|
|
|
|
build: install with the correct permissions
The install() command will create the parent directories, but it does so
with the user's umask. We want to do our best to make sure the correct
permissions are being set, without clobbering existing permissions.
To do this, this commit introduces an install_helper(), which is similar
in signature to the install() command, to help ensure that directories
are created ahead of the actual install() command. This will attempt to
use 0644 permissions for files and 0755 permissions for directories by
default--though they can be overridden.
To make this work correctly, without trying to introduce some mechanism
with setting the umask, it meant that there's a small portion that makes
use of an "internal" version of the file() command. It has been tested
on CMake 2.8.11, 2.8.12, and 3.0.2, and works correctly on all versions.
This fixes #1201 and #1086.
2014-09-19 04:37:22 -07:00
|
|
|
add_subdirectory(src/nvim)
|
2022-06-27 03:08:59 -07:00
|
|
|
add_subdirectory(cmake.config)
|
2015-04-02 09:45:34 -07:00
|
|
|
add_subdirectory(runtime)
|
2023-02-08 15:46:39 -07:00
|
|
|
add_subdirectory(test)
|
2015-02-23 08:34:20 -07:00
|
|
|
|
2022-06-17 05:11:08 -07:00
|
|
|
add_custom_target(uninstall
|
|
|
|
COMMAND ${CMAKE_COMMAND} -P ${PROJECT_SOURCE_DIR}/cmake/UninstallHelper.cmake)
|
2022-02-07 13:49:09 -07:00
|
|
|
|
|
|
|
if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
|
2022-06-27 03:08:59 -07:00
|
|
|
add_subdirectory(cmake.packaging)
|
2022-02-07 13:49:09 -07:00
|
|
|
endif()
|
2023-05-18 07:27:47 -07:00
|
|
|
|
|
|
|
ExternalProject_Add(uncrustify
|
2023-11-20 07:11:44 -07:00
|
|
|
URL https://github.com/uncrustify/uncrustify/archive/uncrustify-0.78.1.tar.gz
|
|
|
|
URL_HASH SHA256=ecaf4c0adca14c36dfffa30bc28e69865115ecd602c90eb16a8cddccb41caad2
|
2023-05-18 07:27:47 -07:00
|
|
|
DOWNLOAD_NO_PROGRESS TRUE
|
|
|
|
DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/uncrustify
|
|
|
|
CMAKE_ARGS ${DEPS_CMAKE_ARGS}
|
|
|
|
CMAKE_CACHE_ARGS ${DEPS_CMAKE_CACHE_ARGS}
|
|
|
|
EXCLUDE_FROM_ALL TRUE)
|
2023-05-21 11:57:39 -07:00
|
|
|
|
2023-11-07 01:52:20 -07:00
|
|
|
option(USE_BUNDLED_BUSTED "Use bundled busted" ON)
|
2023-05-29 09:45:08 -07:00
|
|
|
if(USE_BUNDLED_BUSTED)
|
|
|
|
ExternalProject_Add(lua-dev-deps
|
|
|
|
URL https://github.com/neovim/deps/raw/5a1f71cceb24990a0b15fd9a472a5f549f019248/opt/lua-dev-deps.tar.gz
|
|
|
|
URL_HASH SHA256=27db2495f5eddc7fc191701ec9b291486853530c6125609d3197d03481e8d5a2
|
|
|
|
DOWNLOAD_NO_PROGRESS TRUE
|
|
|
|
DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/lua-dev-deps
|
|
|
|
SOURCE_DIR ${DEPS_SHARE_DIR}
|
|
|
|
CONFIGURE_COMMAND ""
|
|
|
|
BUILD_COMMAND ""
|
|
|
|
INSTALL_COMMAND ""
|
|
|
|
EXCLUDE_FROM_ALL TRUE)
|
|
|
|
else()
|
|
|
|
add_custom_target(lua-dev-deps)
|
|
|
|
endif()
|