2021-06-28 15:56:02 +00:00
|
|
|
cmake_minimum_required(VERSION 3.5)
|
2018-01-13 14:58:29 +00:00
|
|
|
|
2020-03-14 23:11:35 +00:00
|
|
|
if(POLICY CMP0066)
|
|
|
|
cmake_policy(SET CMP0066 OLD)
|
|
|
|
endif()
|
|
|
|
if(POLICY CMP0067)
|
|
|
|
cmake_policy(SET CMP0067 NEW)
|
|
|
|
endif()
|
2018-01-13 14:58:29 +00:00
|
|
|
|
2020-03-14 23:11:35 +00:00
|
|
|
include(cmake/Mac.cmake)
|
2020-02-13 06:19:50 +00:00
|
|
|
|
2020-03-14 23:11:35 +00:00
|
|
|
project(fish)
|
2020-04-01 16:33:31 +00:00
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
2017-08-31 20:24:20 +00:00
|
|
|
|
|
|
|
# We are C++11.
|
2020-03-14 23:11:35 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
set(DEFAULT_BUILD_TYPE "RelWithDebInfo")
|
2018-06-18 05:21:23 +00:00
|
|
|
|
2019-11-13 21:13:08 +00:00
|
|
|
# Use the default flags (#6296) but remove -DNDEBUG so that asserts remain enabled.
|
2020-03-14 23:11:35 +00:00
|
|
|
string(REPLACE "-DNDEBUG" ""
|
2019-11-13 21:13:08 +00:00
|
|
|
CMAKE_CXX_FLAGS_RELWITHDEBINFO
|
|
|
|
"${CMAKE_CXX_FLAGS_RELWITHDEBINFO}")
|
|
|
|
|
2020-03-14 23:11:35 +00:00
|
|
|
string(REPLACE "-DNDEBUG" ""
|
2019-11-13 21:13:08 +00:00
|
|
|
CMAKE_CXX_FLAGS_RELEASE
|
|
|
|
"${CMAKE_CXX_FLAGS_RELEASE}")
|
|
|
|
|
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
|
|
|
|
2021-04-25 07:38:04 +00: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 11:26:27 +00: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 11:53:12 +00: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)))
|
2018-11-02 11:26:27 +00:00
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fdiagnostics-color=always")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fdiagnostics-color=always")
|
|
|
|
endif()
|
2021-01-29 17:16:00 +00:00
|
|
|
|
2019-05-29 18:47:18 +00: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`).
|
2019-06-24 20:11:49 +00:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra \
|
|
|
|
-Wno-comment \
|
|
|
|
-Wno-address \
|
|
|
|
")
|
2018-11-02 11:26:27 +00:00
|
|
|
|
2017-12-17 22:45:29 +00:00
|
|
|
# Disable exception handling.
|
2020-03-14 23:11:35 +00:00
|
|
|
add_compile_options(-fno-exceptions)
|
2017-12-17 22:45:29 +00:00
|
|
|
|
2017-10-05 04:40:58 +00:00
|
|
|
# Hide the CMake Rules directories in Xcode projects.
|
2020-03-14 23:11:35 +00:00
|
|
|
source_group("CMake Rules" REGULAR_EXPRESSION "^$")
|
2017-10-05 04:40:58 +00:00
|
|
|
|
|
|
|
# Put source and header files at top level under targets.
|
2020-03-14 23:11:35 +00:00
|
|
|
source_group("Source Files" REGULAR_EXPRESSION "^$")
|
|
|
|
source_group("Header Files" REGULAR_EXPRESSION "^$")
|
|
|
|
source_group("Builtins" REGULAR_EXPRESSION "builtin_.*")
|
2017-10-05 04:40:58 +00:00
|
|
|
|
|
|
|
# Support folders.
|
2020-03-14 23:11:35 +00:00
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
2017-10-05 04:40:58 +00:00
|
|
|
|
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
|
|
|
|
2017-11-11 15:08:37 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
|
|
|
|
|
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
|
|
|
|
2019-02-18 14:22:30 +00:00
|
|
|
# NetBSD does weird things with finding libraries,
|
|
|
|
# making the tests fail by failing to find pcre.
|
|
|
|
#
|
|
|
|
# Keep the rpath used to build.
|
2020-03-14 23:11:35 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL NetBSD)
|
|
|
|
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
|
|
endif()
|
2019-02-18 14:22:30 +00:00
|
|
|
|
2017-08-31 20:24:20 +00:00
|
|
|
# All objects that the system needs to build fish, except fish.cpp
|
2020-03-14 23:11:35 +00:00
|
|
|
set(FISH_SRCS
|
2020-07-19 23:07:01 +00:00
|
|
|
src/ast.cpp src/autoload.cpp src/builtin.cpp src/builtin_argparse.cpp
|
|
|
|
src/builtin_bg.cpp src/builtin_bind.cpp src/builtin_block.cpp
|
|
|
|
src/builtin_builtin.cpp src/builtin_cd.cpp src/builtin_command.cpp
|
|
|
|
src/builtin_commandline.cpp src/builtin_complete.cpp src/builtin_contains.cpp
|
|
|
|
src/builtin_disown.cpp src/builtin_echo.cpp src/builtin_emit.cpp
|
|
|
|
src/builtin_eval.cpp src/builtin_exit.cpp src/builtin_fg.cpp
|
|
|
|
src/builtin_function.cpp src/builtin_functions.cpp src/builtin_history.cpp
|
|
|
|
src/builtin_jobs.cpp src/builtin_math.cpp src/builtin_printf.cpp
|
|
|
|
src/builtin_pwd.cpp src/builtin_random.cpp src/builtin_read.cpp
|
|
|
|
src/builtin_realpath.cpp src/builtin_return.cpp src/builtin_set.cpp
|
|
|
|
src/builtin_set_color.cpp src/builtin_source.cpp src/builtin_status.cpp
|
2020-09-21 15:45:35 +00:00
|
|
|
src/builtin_string.cpp src/builtin_test.cpp src/builtin_type.cpp src/builtin_ulimit.cpp
|
2020-07-19 23:07:01 +00:00
|
|
|
src/builtin_wait.cpp src/color.cpp src/common.cpp src/complete.cpp src/env.cpp
|
|
|
|
src/env_dispatch.cpp src/env_universal_common.cpp src/event.cpp src/exec.cpp
|
|
|
|
src/expand.cpp src/fallback.cpp src/fd_monitor.cpp src/fish_version.cpp
|
|
|
|
src/flog.cpp src/function.cpp src/future_feature_flags.cpp src/highlight.cpp
|
|
|
|
src/history.cpp src/history_file.cpp src/input.cpp src/input_common.cpp
|
2020-07-19 23:41:58 +00:00
|
|
|
src/intern.cpp src/io.cpp src/iothread.cpp src/job_group.cpp src/kill.cpp
|
2020-07-19 23:07:01 +00:00
|
|
|
src/null_terminated_array.cpp src/operation_context.cpp src/output.cpp
|
|
|
|
src/pager.cpp src/parse_execution.cpp src/parse_tree.cpp src/parse_util.cpp
|
|
|
|
src/parser.cpp src/parser_keywords.cpp src/path.cpp src/postfork.cpp
|
|
|
|
src/proc.cpp src/reader.cpp src/redirection.cpp src/sanity.cpp src/screen.cpp
|
|
|
|
src/signal.cpp src/termsize.cpp src/timer.cpp src/tinyexpr.cpp
|
|
|
|
src/tokenizer.cpp src/topic_monitor.cpp src/trace.cpp src/utf8.cpp src/util.cpp
|
2021-05-11 19:01:08 +00:00
|
|
|
src/wait_handle.cpp src/wcstringutil.cpp src/wgetopt.cpp src/wildcard.cpp
|
|
|
|
src/wutil.cpp src/fds.cpp
|
2017-08-31 20:24:20 +00:00
|
|
|
)
|
|
|
|
|
2017-10-05 04:40:58 +00:00
|
|
|
# Header files are just globbed.
|
2020-03-14 23:11:35 +00:00
|
|
|
file(GLOB FISH_HEADERS src/*.h)
|
2017-10-05 04:40:58 +00:00
|
|
|
|
2017-08-31 20:24:20 +00:00
|
|
|
# Set up config.h
|
2020-03-14 23:11:35 +00:00
|
|
|
include(cmake/ConfigureChecks.cmake)
|
|
|
|
include(cmake/gettext.cmake)
|
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config_cmake.h.in
|
2017-08-31 20:24:20 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/config.h)
|
2020-03-14 23:11:35 +00:00
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
2017-08-31 20:24:20 +00:00
|
|
|
|
|
|
|
# Set up standard directories.
|
2020-03-14 23:11:35 +00:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
add_definitions(-D_UNICODE=1
|
2017-08-31 20:24:20 +00:00
|
|
|
-DLOCALEDIR="${CMAKE_INSTALL_FULL_LOCALEDIR}"
|
|
|
|
-DPREFIX=L"${CMAKE_INSTALL_PREFIX}"
|
|
|
|
-DDATADIR=L"${CMAKE_INSTALL_FULL_DATADIR}"
|
|
|
|
-DSYSCONFDIR=L"${CMAKE_INSTALL_FULL_SYSCONFDIR}"
|
|
|
|
-DBINDIR=L"${CMAKE_INSTALL_FULL_BINDIR}"
|
|
|
|
-DDOCDIR=L"${CMAKE_INSTALL_FULL_DOCDIR}")
|
|
|
|
|
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
|
|
|
|
2018-01-08 09:39:45 +00:00
|
|
|
# Teach fish_version.o to rebuild when FBVF changes.
|
|
|
|
# The standard C++ include detection machinery misses this.
|
2020-03-14 23:11:35 +00:00
|
|
|
set_source_files_properties(src/fish_version.cpp
|
2018-01-08 09:39:45 +00:00
|
|
|
PROPERTIES OBJECT_DEPENDS
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${FBVF})
|
|
|
|
|
2019-02-20 21:41:02 +00:00
|
|
|
# Enable thread-safe errno on Solaris (#5611)
|
2020-03-14 23:11:35 +00:00
|
|
|
add_definitions(-D_REENTRANT)
|
2018-03-25 08:19:57 +00:00
|
|
|
|
2017-10-05 03:31:35 +00:00
|
|
|
# Set up PCRE2
|
2020-03-14 23:11:35 +00:00
|
|
|
include(cmake/PCRE2.cmake)
|
2017-08-31 20:24:20 +00:00
|
|
|
|
|
|
|
# Define a function to link dependencies.
|
2020-03-14 23:11:35 +00:00
|
|
|
function(FISH_LINK_DEPS_AND_SIGN target)
|
|
|
|
target_link_libraries(${target} fishlib)
|
|
|
|
codesign_on_mac(${target})
|
|
|
|
endfunction(FISH_LINK_DEPS_AND_SIGN)
|
2017-08-31 20:24:20 +00:00
|
|
|
|
2017-10-05 04:33:43 +00:00
|
|
|
# Define libfish.a.
|
2020-03-14 23:11:35 +00:00
|
|
|
add_library(fishlib STATIC ${FISH_SRCS})
|
|
|
|
target_sources(fishlib PRIVATE ${FISH_HEADERS})
|
|
|
|
target_link_libraries(fishlib
|
2017-10-14 20:07:05 +00:00
|
|
|
${CURSES_LIBRARY} ${CURSES_EXTRA_LIBRARY} Threads::Threads ${CMAKE_DL_LIBS}
|
2019-12-20 15:00:06 +00:00
|
|
|
${PCRE2_LIB} ${Intl_LIBRARIES} ${ATOMIC_LIBRARY})
|
2020-07-22 03:56:12 +00:00
|
|
|
target_include_directories(fishlib PRIVATE
|
|
|
|
${CURSES_INCLUDE_DIRS})
|
2017-10-05 04:33:43 +00:00
|
|
|
|
2017-08-31 20:24:20 +00:00
|
|
|
# Define fish.
|
2020-03-14 23:11:35 +00:00
|
|
|
add_executable(fish src/fish.cpp)
|
|
|
|
fish_link_deps_and_sign(fish)
|
2017-08-31 20:24:20 +00:00
|
|
|
|
2017-09-08 22:19:07 +00:00
|
|
|
# Define fish_indent.
|
2020-03-14 23:11:35 +00:00
|
|
|
add_executable(fish_indent
|
2017-10-05 04:33:43 +00:00
|
|
|
src/fish_indent.cpp src/print_help.cpp)
|
2020-03-14 23:11:35 +00:00
|
|
|
fish_link_deps_and_sign(fish_indent)
|
2017-09-08 22:19:07 +00:00
|
|
|
|
|
|
|
# Define fish_key_reader.
|
2020-03-14 23:11:35 +00:00
|
|
|
add_executable(fish_key_reader
|
2017-10-05 04:33:43 +00:00
|
|
|
src/fish_key_reader.cpp src/print_help.cpp)
|
2020-03-14 23:11:35 +00:00
|
|
|
fish_link_deps_and_sign(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.
|
2020-03-14 23:11:35 +00:00
|
|
|
add_executable(fish_test_helper src/fish_test_helper.cpp)
|
2019-04-07 05:22:11 +00:00
|
|
|
|
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-11-23 19:45:37 +00: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()
|
|
|
|
|
2019-02-19 13:12:04 +00:00
|
|
|
# Lint targets
|
|
|
|
# This could be implemented as target properties, but the script has the useful feature of only
|
|
|
|
# checking the currently-staged commands
|
|
|
|
# The generator expressions below rebuild the command line for the fishlib targets
|
|
|
|
# CMake does not support the "iquote" flag - https://gitlab.kitware.com/cmake/cmake/issues/15491
|
2020-03-14 23:11:35 +00:00
|
|
|
set(LINT_ARGS "-D$<JOIN:$<TARGET_PROPERTY:fishlib,COMPILE_DEFINITIONS>, -D>" "-I$<JOIN:$<TARGET_PROPERTY:fishlib,INCLUDE_DIRECTORIES>, -I>")
|
|
|
|
add_custom_target(lint
|
2020-04-01 16:33:31 +00:00
|
|
|
COMMAND build_tools/lint.fish -p ${CMAKE_BINARY_DIR} -- ${LINT_ARGS}
|
2019-02-19 13:12:04 +00:00
|
|
|
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
|
|
|
|
)
|
2020-03-14 23:11:35 +00:00
|
|
|
add_custom_target(lint-all
|
2020-04-01 16:33:31 +00:00
|
|
|
COMMAND build_tools/lint.fish --all -p ${CMAKE_BINARY_DIR} -- ${LINT_ARGS}
|
2019-02-19 13:12:04 +00:00
|
|
|
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
|
|
|
|
)
|
|
|
|
|
2020-03-14 23:11:35 +00:00
|
|
|
include(FeatureSummary)
|
|
|
|
feature_summary(WHAT ALL)
|