2024-01-13 14:47:42 +00:00
|
|
|
# CMake 3.19 is needed for file(REAL_PATH)
|
2024-02-03 07:02:05 +00:00
|
|
|
cmake_minimum_required(VERSION 3.19)
|
2018-01-13 14:58:29 +00:00
|
|
|
|
2024-01-25 11:58:50 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
|
|
|
|
|
2024-06-11 14:53:01 +00:00
|
|
|
project(fish LANGUAGES C)
|
2020-04-01 16:33:31 +00:00
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
2017-08-31 20:24:20 +00:00
|
|
|
|
2024-02-04 08:46:05 +00:00
|
|
|
set(DEFAULT_BUILD_TYPE "Debug")
|
2018-06-18 05:21:23 +00:00
|
|
|
|
2021-09-19 05:09:31 +00:00
|
|
|
# Generate Xcode schemas (but not for tests).
|
|
|
|
set(CMAKE_XCODE_GENERATE_SCHEME 1)
|
|
|
|
|
2020-03-14 23:11:35 +00:00
|
|
|
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
|
|
|
|
message(STATUS "Setting build type to default '${DEFAULT_BUILD_TYPE}'")
|
|
|
|
set(CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}")
|
|
|
|
endif()
|
2017-08-31 20:24:20 +00:00
|
|
|
|
2024-01-10 16:41:34 +00:00
|
|
|
# Set up standard directories.
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
add_definitions(-D_UNICODE=1)
|
|
|
|
|
2024-01-03 19:02:32 +00:00
|
|
|
include(cmake/gettext.cmake)
|
|
|
|
|
2024-01-13 06:17:50 +00:00
|
|
|
# Set up PCRE2
|
|
|
|
# This sets an environment variable that needs to be available before the Rust stanzas
|
|
|
|
include(cmake/PCRE2.cmake)
|
|
|
|
|
2023-01-14 22:56:24 +00:00
|
|
|
include(cmake/Rust.cmake)
|
|
|
|
|
2019-01-31 23:56:27 +00:00
|
|
|
# Work around issue where archive-built libs go in the wrong place.
|
2020-03-14 23:11:35 +00:00
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})
|
2019-01-31 23:56:27 +00:00
|
|
|
|
2020-03-14 23:11:35 +00:00
|
|
|
if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_CURRENT_BINARY_DIR)
|
|
|
|
set(FISH_IN_TREE_BUILD TRUE)
|
|
|
|
else()
|
|
|
|
set(FISH_IN_TREE_BUILD FALSE)
|
|
|
|
endif()
|
2018-01-23 09:35:38 +00:00
|
|
|
|
2018-01-08 09:39:45 +00:00
|
|
|
# Set up the machinery around FISH-BUILD-VERSION-FILE
|
|
|
|
# This defines the FBVF variable.
|
2020-03-14 23:11:35 +00:00
|
|
|
include(Version)
|
2018-01-08 09:39:45 +00:00
|
|
|
|
2018-10-14 02:36:59 +00:00
|
|
|
# Let fish pick up when we're running out of the build directory without installing
|
2020-03-14 23:11:35 +00:00
|
|
|
get_filename_component(REAL_CMAKE_BINARY_DIR "${CMAKE_BINARY_DIR}" REALPATH)
|
|
|
|
get_filename_component(REAL_CMAKE_SOURCE_DIR "${CMAKE_SOURCE_DIR}" REALPATH)
|
|
|
|
add_definitions(-DCMAKE_BINARY_DIR="${REAL_CMAKE_BINARY_DIR}")
|
|
|
|
add_definitions(-DCMAKE_SOURCE_DIR="${REAL_CMAKE_SOURCE_DIR}")
|
2018-10-14 02:36:59 +00:00
|
|
|
|
2024-07-07 18:30:28 +00:00
|
|
|
# Define a function to build and link dependencies.
|
|
|
|
function(CREATE_TARGET target)
|
2024-03-24 09:46:52 +00:00
|
|
|
add_custom_target(
|
|
|
|
${target} ALL
|
|
|
|
COMMAND
|
|
|
|
"${CMAKE_COMMAND}" -E
|
|
|
|
env ${VARS_FOR_CARGO}
|
|
|
|
${Rust_CARGO}
|
|
|
|
build --bin ${target}
|
|
|
|
$<$<CONFIG:Release,RelWithDebInfo>:--release>
|
|
|
|
--target ${Rust_CARGO_TARGET}
|
|
|
|
${CARGO_FLAGS}
|
|
|
|
${FEATURES_ARG}
|
|
|
|
&&
|
|
|
|
"${CMAKE_COMMAND}" -E
|
|
|
|
copy "${rust_target_dir}/${rust_profile}/${target}" "${CMAKE_CURRENT_BINARY_DIR}"
|
2024-01-25 11:58:50 +00:00
|
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
|
|
USES_TERMINAL
|
|
|
|
)
|
2024-07-07 18:30:28 +00:00
|
|
|
endfunction(CREATE_TARGET)
|
2017-08-31 20:24:20 +00:00
|
|
|
|
|
|
|
# Define fish.
|
2024-07-07 18:30:28 +00:00
|
|
|
create_target(fish)
|
2017-08-31 20:24:20 +00:00
|
|
|
|
2017-09-08 22:19:07 +00:00
|
|
|
# Define fish_indent.
|
2024-07-07 18:30:28 +00:00
|
|
|
create_target(fish_indent)
|
2017-09-08 22:19:07 +00:00
|
|
|
|
|
|
|
# Define fish_key_reader.
|
2024-07-07 18:30:28 +00:00
|
|
|
create_target(fish_key_reader)
|
2017-09-08 22:19:07 +00:00
|
|
|
|
2019-03-14 20:50:35 +00:00
|
|
|
# Set up the docs.
|
2020-03-14 23:11:35 +00:00
|
|
|
include(cmake/Docs.cmake)
|
2019-03-14 20:50:35 +00:00
|
|
|
|
2019-04-07 05:22:11 +00:00
|
|
|
# A helper for running tests.
|
2024-06-11 14:53:01 +00:00
|
|
|
add_executable(fish_test_helper src/fish_test_helper.c)
|
2017-09-01 07:31:51 +00:00
|
|
|
# Set up tests.
|
2020-03-14 23:11:35 +00:00
|
|
|
include(cmake/Tests.cmake)
|
2017-10-05 03:45:48 +00:00
|
|
|
|
2019-04-10 21:30:31 +00:00
|
|
|
# Benchmarking support.
|
2020-03-14 23:11:35 +00:00
|
|
|
include(cmake/Benchmark.cmake)
|
2019-04-10 21:30:31 +00:00
|
|
|
|
2017-10-05 03:45:48 +00:00
|
|
|
# Set up install.
|
2020-03-14 23:11:35 +00:00
|
|
|
include(cmake/Install.cmake)
|
2017-11-13 14:21:54 +00:00
|
|
|
|
2019-01-26 02:43:52 +00:00
|
|
|
# Mac app.
|
2020-03-14 23:11:35 +00:00
|
|
|
include(cmake/MacApp.cmake)
|
2019-01-26 02:43:52 +00:00
|
|
|
|
2020-03-14 23:11:35 +00:00
|
|
|
include(FeatureSummary)
|
|
|
|
feature_summary(WHAT ALL)
|