2024-08-04 10:18:06 +02:00
|
|
|
cmake_minimum_required(VERSION 3.5)
|
2018-01-13 22:58:29 +08:00
|
|
|
|
2024-01-25 19:58:50 +08:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
|
|
|
|
|
2024-06-11 16:53:01 +02:00
|
|
|
project(fish LANGUAGES C)
|
2020-04-01 19:33:31 +03:00
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
2017-08-31 13:24:20 -07:00
|
|
|
|
2024-02-04 09:46:05 +01:00
|
|
|
set(DEFAULT_BUILD_TYPE "Debug")
|
2018-06-18 00:21:23 -05:00
|
|
|
|
2021-09-18 22:09:31 -07:00
|
|
|
# Generate Xcode schemas (but not for tests).
|
|
|
|
set(CMAKE_XCODE_GENERATE_SCHEME 1)
|
|
|
|
|
2020-03-14 16:11:35 -07: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 13:24:20 -07:00
|
|
|
|
2024-01-10 17:41:34 +01:00
|
|
|
# Set up standard directories.
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
add_definitions(-D_UNICODE=1)
|
|
|
|
|
2024-01-03 20:02:32 +01:00
|
|
|
include(cmake/gettext.cmake)
|
|
|
|
|
2024-01-13 14:17:50 +08: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 14:56:24 -08:00
|
|
|
include(cmake/Rust.cmake)
|
|
|
|
|
2019-01-31 15:56:27 -08:00
|
|
|
# Work around issue where archive-built libs go in the wrong place.
|
2020-03-14 16:11:35 -07:00
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})
|
2019-01-31 15:56:27 -08:00
|
|
|
|
2020-03-14 16:11:35 -07: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 17:35:38 +08:00
|
|
|
|
2018-01-08 01:39:45 -08:00
|
|
|
# Set up the machinery around FISH-BUILD-VERSION-FILE
|
|
|
|
# This defines the FBVF variable.
|
2020-03-14 16:11:35 -07:00
|
|
|
include(Version)
|
2018-01-08 01:39:45 -08:00
|
|
|
|
2018-10-13 21:36:59 -05:00
|
|
|
# Let fish pick up when we're running out of the build directory without installing
|
2020-03-14 16:11:35 -07: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-13 21:36:59 -05:00
|
|
|
|
2024-07-07 11:30:28 -07:00
|
|
|
# Define a function to build and link dependencies.
|
|
|
|
function(CREATE_TARGET target)
|
2024-03-24 10:46:52 +01:00
|
|
|
add_custom_target(
|
|
|
|
${target} ALL
|
|
|
|
COMMAND
|
|
|
|
"${CMAKE_COMMAND}" -E
|
|
|
|
env ${VARS_FOR_CARGO}
|
|
|
|
${Rust_CARGO}
|
|
|
|
build --bin ${target}
|
2024-08-04 13:00:00 +02:00
|
|
|
$<$<CONFIG:Release>:--release>
|
|
|
|
$<$<CONFIG:RelWithDebInfo>:--release>
|
2024-03-24 10:46:52 +01:00
|
|
|
--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 19:58:50 +08:00
|
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
|
|
USES_TERMINAL
|
|
|
|
)
|
2024-07-07 11:30:28 -07:00
|
|
|
endfunction(CREATE_TARGET)
|
2017-08-31 13:24:20 -07:00
|
|
|
|
|
|
|
# Define fish.
|
2024-07-07 11:30:28 -07:00
|
|
|
create_target(fish)
|
2017-08-31 13:24:20 -07:00
|
|
|
|
2017-09-08 15:19:07 -07:00
|
|
|
# Define fish_indent.
|
2024-07-07 11:30:28 -07:00
|
|
|
create_target(fish_indent)
|
2017-09-08 15:19:07 -07:00
|
|
|
|
|
|
|
# Define fish_key_reader.
|
2024-07-07 11:30:28 -07:00
|
|
|
create_target(fish_key_reader)
|
2017-09-08 15:19:07 -07:00
|
|
|
|
2019-03-14 13:50:35 -07:00
|
|
|
# Set up the docs.
|
2020-03-14 16:11:35 -07:00
|
|
|
include(cmake/Docs.cmake)
|
2019-03-14 13:50:35 -07:00
|
|
|
|
2019-04-06 22:22:11 -07:00
|
|
|
# A helper for running tests.
|
2024-06-11 16:53:01 +02:00
|
|
|
add_executable(fish_test_helper src/fish_test_helper.c)
|
2017-09-01 00:31:51 -07:00
|
|
|
# Set up tests.
|
2020-03-14 16:11:35 -07:00
|
|
|
include(cmake/Tests.cmake)
|
2017-10-04 20:45:48 -07:00
|
|
|
|
2019-04-10 14:30:31 -07:00
|
|
|
# Benchmarking support.
|
2020-03-14 16:11:35 -07:00
|
|
|
include(cmake/Benchmark.cmake)
|
2019-04-10 14:30:31 -07:00
|
|
|
|
2017-10-04 20:45:48 -07:00
|
|
|
# Set up install.
|
2020-03-14 16:11:35 -07:00
|
|
|
include(cmake/Install.cmake)
|
2017-11-13 22:21:54 +08:00
|
|
|
|
2019-01-25 18:43:52 -08:00
|
|
|
# Mac app.
|
2020-03-14 16:11:35 -07:00
|
|
|
include(cmake/MacApp.cmake)
|
2019-01-25 18:43:52 -08:00
|
|
|
|
2020-03-14 16:11:35 -07:00
|
|
|
include(FeatureSummary)
|
|
|
|
feature_summary(WHAT ALL)
|