2024-01-13 22:47:42 +08:00
|
|
|
# CMake 3.15 is required to support Corrosion
|
|
|
|
# CMake 3.19 is needed for file(REAL_PATH)
|
2024-02-03 15:02:05 +08:00
|
|
|
cmake_minimum_required(VERSION 3.19)
|
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")
|
|
|
|
|
2020-03-15 07:11:35 +08:00
|
|
|
include(cmake/Mac.cmake)
|
2020-02-13 14:19:50 +08:00
|
|
|
|
2020-03-15 07:11:35 +08:00
|
|
|
project(fish)
|
2020-04-02 00:33:31 +08:00
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
2017-09-01 04:24:20 +08:00
|
|
|
|
|
|
|
# We are C++11.
|
2020-03-15 07:11:35 +08:00
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
2024-02-04 16:46:05 +08:00
|
|
|
set(DEFAULT_BUILD_TYPE "Debug")
|
2018-06-18 13:21:23 +08:00
|
|
|
|
2021-09-19 13:09:31 +08:00
|
|
|
# Generate Xcode schemas (but not for tests).
|
|
|
|
set(CMAKE_XCODE_GENERATE_SCHEME 1)
|
|
|
|
|
2020-03-15 07:11:35 +08: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-09-01 04:24:20 +08:00
|
|
|
|
2024-01-11 00:41:34 +08:00
|
|
|
# Set up standard directories.
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
add_definitions(-D_UNICODE=1)
|
|
|
|
|
2024-01-04 03:02:32 +08:00
|
|
|
include(cmake/ConfigureChecks.cmake)
|
|
|
|
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-15 06:56:24 +08:00
|
|
|
include(cmake/Rust.cmake)
|
|
|
|
|
2021-04-25 15:38:04 +08:00
|
|
|
# Error out when linking statically, it doesn't work.
|
|
|
|
if (CMAKE_EXE_LINKER_FLAGS MATCHES ".*-static.*")
|
|
|
|
message(FATAL_ERROR "Fish does not support static linking")
|
|
|
|
endif()
|
|
|
|
|
2018-11-02 19:26:27 +08:00
|
|
|
# Force colored warnings in Ninja's output, if the compiler has -fdiagnostics-color support.
|
|
|
|
# Rationale in https://github.com/ninja-build/ninja/issues/814
|
|
|
|
if (CMAKE_GENERATOR STREQUAL "Ninja" AND
|
|
|
|
((CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.9) OR
|
2018-12-11 19:53:12 +08:00
|
|
|
(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.5) OR
|
|
|
|
(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang" AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 6.0)))
|
2021-10-02 00:08:08 +08:00
|
|
|
add_compile_options(-fdiagnostics-color=always)
|
2018-11-02 19:26:27 +08:00
|
|
|
endif()
|
2021-01-30 01:16:00 +08:00
|
|
|
|
2019-05-30 02:47:18 +08:00
|
|
|
# Enable a whole bunch of warnings, but turn off:
|
|
|
|
# - comment because we use a bunch of those, and they're not really all that harmful.
|
|
|
|
# - address, because that occurs for our mkostemp check (weak-linking requires us to compare `&mkostemp == nullptr`).
|
2021-10-02 00:08:08 +08:00
|
|
|
add_compile_options(-Wall -Wextra -Wno-comment -Wno-address)
|
2021-10-01 20:09:04 +08:00
|
|
|
|
|
|
|
if ((CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR (CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang"))
|
2021-10-02 00:08:08 +08:00
|
|
|
add_compile_options(-Wunused-template -Wunused-local-typedef -Wunused-macros)
|
2021-10-01 20:09:04 +08:00
|
|
|
endif()
|
2018-11-02 19:26:27 +08:00
|
|
|
|
2017-12-18 06:45:29 +08:00
|
|
|
# Disable exception handling.
|
2020-03-15 07:11:35 +08:00
|
|
|
add_compile_options(-fno-exceptions)
|
2017-12-18 06:45:29 +08:00
|
|
|
|
2017-10-05 12:40:58 +08:00
|
|
|
# Hide the CMake Rules directories in Xcode projects.
|
2020-03-15 07:11:35 +08:00
|
|
|
source_group("CMake Rules" REGULAR_EXPRESSION "^$")
|
2017-10-05 12:40:58 +08:00
|
|
|
|
|
|
|
# Put source and header files at top level under targets.
|
2021-11-10 09:07:15 +08:00
|
|
|
source_group("Source Files" REGULAR_EXPRESSION ".*\\.cpp")
|
|
|
|
source_group("Header Files" REGULAR_EXPRESSION ".*\\.h")
|
|
|
|
source_group("Builtins" "builtins/")
|
2017-10-05 12:40:58 +08:00
|
|
|
|
|
|
|
# Support folders.
|
2020-03-15 07:11:35 +08:00
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
2017-10-05 12:40:58 +08:00
|
|
|
|
2019-02-01 07:56:27 +08:00
|
|
|
# Work around issue where archive-built libs go in the wrong place.
|
2020-03-15 07:11:35 +08:00
|
|
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})
|
2019-02-01 07:56:27 +08:00
|
|
|
|
2020-03-15 07:11:35 +08: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 17:39:45 +08:00
|
|
|
# Set up the machinery around FISH-BUILD-VERSION-FILE
|
|
|
|
# This defines the FBVF variable.
|
2020-03-15 07:11:35 +08:00
|
|
|
include(Version)
|
2018-01-08 17:39:45 +08:00
|
|
|
|
2018-10-14 10:36:59 +08:00
|
|
|
# Let fish pick up when we're running out of the build directory without installing
|
2020-03-15 07:11:35 +08: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 10:36:59 +08:00
|
|
|
|
2019-02-21 05:41:02 +08:00
|
|
|
# Enable thread-safe errno on Solaris (#5611)
|
2020-03-15 07:11:35 +08:00
|
|
|
add_definitions(-D_REENTRANT)
|
2018-03-25 16:19:57 +08:00
|
|
|
|
2024-02-03 16:55:16 +08:00
|
|
|
# cargo needs to be rerun when the sources change.
|
|
|
|
# This is imperfect, but the ninja generator really wants to
|
|
|
|
# not run cargo, so we need to tell it *something*
|
2024-02-13 05:27:55 +08:00
|
|
|
FILE(GLOB sources src/* src/*/* src/*/*/*)
|
2024-02-02 23:00:04 +08:00
|
|
|
|
2017-09-01 04:24:20 +08:00
|
|
|
# Define a function to link dependencies.
|
2020-03-15 07:11:35 +08:00
|
|
|
function(FISH_LINK_DEPS_AND_SIGN target)
|
2024-01-25 19:58:50 +08:00
|
|
|
add_custom_command(
|
|
|
|
OUTPUT ${rust_target_dir}/${rust_profile}/${target}
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E env
|
|
|
|
${VARS_FOR_CARGO}
|
|
|
|
${Rust_CARGO} ARGS build --bin ${target}
|
|
|
|
$<$<CONFIG:Release,RelWithDebInfo>:--release>
|
|
|
|
--target ${Rust_CARGO_TARGET}
|
|
|
|
${CARGO_FLAGS}
|
|
|
|
${FEATURES_ARG}
|
2024-02-11 21:07:43 +08:00
|
|
|
DEPENDS ${sources} src/bin/${target}.rs
|
2024-02-10 23:31:54 +08:00
|
|
|
DEPENDS Cargo.toml Cargo.lock build.rs
|
2024-01-25 19:58:50 +08:00
|
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
|
|
|
|
USES_TERMINAL
|
|
|
|
# Don't use VERBATIM here, to allow the generator expressions above to expand to nothing rather than an empty string
|
|
|
|
)
|
|
|
|
add_custom_target(${target} ALL
|
|
|
|
COMMAND "${CMAKE_COMMAND}" -E copy
|
|
|
|
"${rust_target_dir}/${rust_profile}/${target}"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}"
|
|
|
|
DEPENDS ${rust_target_dir}/${rust_profile}/${target}
|
|
|
|
)
|
2020-03-15 07:11:35 +08:00
|
|
|
codesign_on_mac(${target})
|
|
|
|
endfunction(FISH_LINK_DEPS_AND_SIGN)
|
2017-09-01 04:24:20 +08:00
|
|
|
|
|
|
|
# Define fish.
|
2020-03-15 07:11:35 +08:00
|
|
|
fish_link_deps_and_sign(fish)
|
2017-09-01 04:24:20 +08:00
|
|
|
|
2017-09-09 06:19:07 +08:00
|
|
|
# Define fish_indent.
|
2020-03-15 07:11:35 +08:00
|
|
|
fish_link_deps_and_sign(fish_indent)
|
2017-09-09 06:19:07 +08:00
|
|
|
|
|
|
|
# Define fish_key_reader.
|
2020-03-15 07:11:35 +08:00
|
|
|
fish_link_deps_and_sign(fish_key_reader)
|
2017-09-09 06:19:07 +08:00
|
|
|
|
2019-03-15 04:50:35 +08:00
|
|
|
# Set up the docs.
|
2020-03-15 07:11:35 +08:00
|
|
|
include(cmake/Docs.cmake)
|
2019-03-15 04:50:35 +08:00
|
|
|
|
2019-04-07 13:22:11 +08:00
|
|
|
# A helper for running tests.
|
2020-03-15 07:11:35 +08:00
|
|
|
add_executable(fish_test_helper src/fish_test_helper.cpp)
|
2019-04-07 13:22:11 +08:00
|
|
|
|
2017-09-01 15:31:51 +08:00
|
|
|
# Set up tests.
|
2020-03-15 07:11:35 +08:00
|
|
|
include(cmake/Tests.cmake)
|
2017-10-05 11:45:48 +08:00
|
|
|
|
2019-04-11 05:30:31 +08:00
|
|
|
# Benchmarking support.
|
2020-03-15 07:11:35 +08:00
|
|
|
include(cmake/Benchmark.cmake)
|
2019-04-11 05:30:31 +08:00
|
|
|
|
2017-10-05 11:45:48 +08:00
|
|
|
# Set up install.
|
2020-03-15 07:11:35 +08:00
|
|
|
include(cmake/Install.cmake)
|
2017-11-13 22:21:54 +08:00
|
|
|
|
2019-01-26 10:43:52 +08:00
|
|
|
# Mac app.
|
2020-03-15 07:11:35 +08:00
|
|
|
include(cmake/MacApp.cmake)
|
2019-01-26 10:43:52 +08:00
|
|
|
|
2020-11-24 03:45:37 +08:00
|
|
|
# ThreadSanitizer likes to muck with signal handlers, which interferes
|
|
|
|
# with fish_test_helper printing the ignored signal mask.
|
|
|
|
# Ensure fish_test_helper does not use TSan.
|
|
|
|
# Note the environment var is CXXFLAGS, but the CMake var is CMAKE_CXX_FLAGS.
|
|
|
|
if (CMAKE_CXX_FLAGS MATCHES ".*-fsanitize=thread.*")
|
|
|
|
target_compile_options(fish_test_helper PRIVATE "-fno-sanitize=all")
|
|
|
|
target_link_libraries(fish_test_helper "-fno-sanitize=all")
|
|
|
|
endif()
|
|
|
|
|
2020-03-15 07:11:35 +08:00
|
|
|
include(FeatureSummary)
|
|
|
|
feature_summary(WHAT ALL)
|