2017-12-21 20:48:17 +00:00
|
|
|
CMAKE_MINIMUM_REQUIRED(VERSION 3.2)
|
2018-01-13 14:58:29 +00:00
|
|
|
|
|
|
|
IF(POLICY CMP0066)
|
|
|
|
CMAKE_POLICY(SET CMP0066 OLD)
|
|
|
|
ENDIF()
|
|
|
|
IF(POLICY CMP0067)
|
|
|
|
CMAKE_POLICY(SET CMP0067 OLD)
|
|
|
|
ENDIF()
|
|
|
|
|
2018-02-10 18:46:34 +00:00
|
|
|
PROJECT(fish)
|
2017-08-31 20:24:20 +00:00
|
|
|
|
|
|
|
# We are C++11.
|
|
|
|
SET(CMAKE_CXX_STANDARD 11)
|
2018-06-18 05:21:23 +00:00
|
|
|
SET(CMAKE_CXX_FLAGS_DEBUG "-O0 -g")
|
|
|
|
SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g")
|
|
|
|
SET(CMAKE_CXX_FLAGS_RELEASE "-O2")
|
|
|
|
SET(DEFAULT_BUILD_TYPE "RelWithDebInfo")
|
|
|
|
|
|
|
|
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
|
|
|
|
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()
|
|
|
|
|
2017-12-17 22:45:29 +00:00
|
|
|
# Disable exception handling.
|
|
|
|
ADD_COMPILE_OPTIONS(-fno-exceptions)
|
|
|
|
|
2017-10-05 04:40:58 +00:00
|
|
|
# Hide the CMake Rules directories in Xcode projects.
|
|
|
|
SOURCE_GROUP("CMake Rules" REGULAR_EXPRESSION "^$")
|
|
|
|
|
|
|
|
# Put source and header files at top level under targets.
|
|
|
|
SOURCE_GROUP("Source Files" REGULAR_EXPRESSION "^$")
|
|
|
|
SOURCE_GROUP("Header Files" REGULAR_EXPRESSION "^$")
|
|
|
|
SOURCE_GROUP("Builtins" REGULAR_EXPRESSION "builtin_.*")
|
|
|
|
|
|
|
|
# Support folders.
|
|
|
|
SET_PROPERTY(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
|
2019-01-31 23:56:27 +00:00
|
|
|
# Work around issue where archive-built libs go in the wrong place.
|
|
|
|
SET(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})
|
|
|
|
|
2017-11-11 15:08:37 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
|
|
|
|
|
2018-01-23 09:35:38 +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()
|
|
|
|
|
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.
|
|
|
|
IF(CMAKE_SYSTEM_NAME STREQUAL NetBSD)
|
|
|
|
SET(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
|
|
|
ENDIF()
|
|
|
|
|
2017-08-31 20:24:20 +00:00
|
|
|
# All objects that the system needs to build fish, except fish.cpp
|
|
|
|
SET(FISH_SRCS
|
|
|
|
src/autoload.cpp src/builtin.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_exit.cpp
|
|
|
|
src/builtin_fg.cpp src/builtin_function.cpp src/builtin_functions.cpp
|
|
|
|
src/builtin_argparse.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 src/builtin_string.cpp
|
2017-11-16 18:46:44 +00:00
|
|
|
src/builtin_test.cpp src/builtin_ulimit.cpp src/builtin_wait.cpp
|
2019-03-26 03:18:00 +00:00
|
|
|
src/color.cpp src/common.cpp src/complete.cpp src/env.cpp src/env_dispatch.cpp
|
2017-11-16 18:46:44 +00:00
|
|
|
src/env_universal_common.cpp src/event.cpp src/exec.cpp src/expand.cpp
|
|
|
|
src/fallback.cpp src/fish_version.cpp src/function.cpp src/highlight.cpp
|
|
|
|
src/history.cpp src/input.cpp src/input_common.cpp src/intern.cpp src/io.cpp
|
|
|
|
src/iothread.cpp src/kill.cpp src/output.cpp src/pager.cpp
|
|
|
|
src/parse_execution.cpp src/parse_productions.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/sanity.cpp src/screen.cpp
|
2018-11-02 12:35:06 +00:00
|
|
|
src/signal.cpp src/tinyexpr.cpp src/tnode.cpp src/tokenizer.cpp src/utf8.cpp src/util.cpp
|
2017-11-16 18:46:44 +00:00
|
|
|
src/wcstringutil.cpp src/wgetopt.cpp src/wildcard.cpp src/wutil.cpp
|
Introduce topic monitoring
topic_monitor allows for querying changes posted to one or more topics,
initially sigchld. This will eventually replace the waitpid logic in
process_mark_finished_children().
Comment from the new header:
Topic monitoring support. Topics are conceptually "a thing that can
happen." For example, delivery of a SIGINT, a child process exits, etc. It
is possible to post to a topic, which means that that thing happened.
Associated with each topic is a current generation, which is a 64 bit
value. When you query a topic, you get back a generation. If on the next
query the generation has increased, then it indicates someone posted to
the topic.
For example, if you are monitoring a child process, you can query the
sigchld topic. If it has increased since your last query, it is possible
that your child process has exited.
Topic postings may be coalesced. That is there may be two posts to a given
topic, yet the generation only increases by 1. The only guarantee is that
after a topic post, the current generation value is larger than any value
previously queried.
Tying this all together is the topic_monitor_t. This provides the current
topic generations, and also provides the ability to perform a blocking
wait for any topic to change in a particular topic set. This is the real
power of topics: you can wait for a sigchld signal OR a thread exit.
2019-02-02 23:39:04 +00:00
|
|
|
src/future_feature_flags.cpp src/redirection.cpp src/topic_monitor.cpp
|
2017-08-31 20:24:20 +00:00
|
|
|
)
|
|
|
|
|
2017-10-05 04:40:58 +00:00
|
|
|
# Header files are just globbed.
|
|
|
|
FILE(GLOB FISH_HEADERS src/*.h)
|
|
|
|
|
2017-08-31 20:24:20 +00:00
|
|
|
# Set up config.h
|
2017-11-07 00:31:42 +00:00
|
|
|
INCLUDE(cmake/ConfigureChecks.cmake)
|
2017-11-16 13:33:35 +00:00
|
|
|
INCLUDE(cmake/gettext.cmake)
|
2017-08-31 20:24:20 +00:00
|
|
|
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/config_cmake.h.in
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/config.h)
|
|
|
|
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
|
|
|
# Set up standard directories.
|
|
|
|
INCLUDE(GNUInstallDirs)
|
2018-01-08 06:25:29 +00:00
|
|
|
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.
|
|
|
|
INCLUDE(Version)
|
|
|
|
|
2018-10-14 02:36:59 +00:00
|
|
|
# Let fish pick up when we're running out of the build directory without installing
|
2019-01-30 20:24:59 +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.
|
|
|
|
SET_SOURCE_FILES_PROPERTIES(src/fish_version.cpp
|
|
|
|
PROPERTIES OBJECT_DEPENDS
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/${FBVF})
|
|
|
|
|
2019-02-20 21:41:02 +00:00
|
|
|
# Enable thread-safe errno on Solaris (#5611)
|
|
|
|
ADD_DEFINITIONS(-D_REENTRANT)
|
2018-03-25 08:19:57 +00:00
|
|
|
|
2017-10-05 03:31:35 +00:00
|
|
|
# Set up PCRE2
|
2017-11-07 00:31:42 +00:00
|
|
|
INCLUDE(cmake/PCRE2.cmake)
|
2017-08-31 20:24:20 +00:00
|
|
|
|
|
|
|
# Define a function to link dependencies.
|
|
|
|
FUNCTION(FISH_LINK_DEPS target)
|
2018-10-22 19:14:35 +00:00
|
|
|
TARGET_LINK_LIBRARIES(${target} fishlib)
|
2017-08-31 20:24:20 +00:00
|
|
|
ENDFUNCTION(FISH_LINK_DEPS)
|
|
|
|
|
2017-10-05 04:33:43 +00:00
|
|
|
# Define libfish.a.
|
|
|
|
ADD_LIBRARY(fishlib STATIC ${FISH_SRCS})
|
2017-10-05 04:40:58 +00:00
|
|
|
TARGET_SOURCES(fishlib PRIVATE ${FISH_HEADERS})
|
2017-10-05 04:33:43 +00:00
|
|
|
TARGET_LINK_LIBRARIES(fishlib
|
2017-10-14 20:07:05 +00:00
|
|
|
${CURSES_LIBRARY} ${CURSES_EXTRA_LIBRARY} Threads::Threads ${CMAKE_DL_LIBS}
|
2018-02-10 18:46:34 +00:00
|
|
|
${PCRE2_LIB} ${Intl_LIBRARIES})
|
2017-10-05 04:33:43 +00:00
|
|
|
|
2017-08-31 20:24:20 +00:00
|
|
|
# Define fish.
|
2017-10-05 04:33:43 +00:00
|
|
|
ADD_EXECUTABLE(fish src/fish.cpp)
|
2017-09-01 07:31:51 +00:00
|
|
|
FISH_LINK_DEPS(fish)
|
2017-08-31 20:24:20 +00:00
|
|
|
|
2017-09-08 22:19:07 +00:00
|
|
|
# Define fish_indent.
|
|
|
|
ADD_EXECUTABLE(fish_indent
|
2017-10-05 04:33:43 +00:00
|
|
|
src/fish_indent.cpp src/print_help.cpp)
|
2017-09-08 22:19:07 +00:00
|
|
|
FISH_LINK_DEPS(fish_indent)
|
|
|
|
|
|
|
|
# Define fish_key_reader.
|
|
|
|
ADD_EXECUTABLE(fish_key_reader
|
2017-10-05 04:33:43 +00:00
|
|
|
src/fish_key_reader.cpp src/print_help.cpp)
|
2017-09-08 22:19:07 +00:00
|
|
|
FISH_LINK_DEPS(fish_key_reader)
|
|
|
|
|
2019-03-14 20:50:35 +00:00
|
|
|
# Set up the docs.
|
|
|
|
INCLUDE(cmake/Docs.cmake)
|
|
|
|
|
2019-04-07 05:22:11 +00:00
|
|
|
# A helper for running tests.
|
|
|
|
ADD_EXECUTABLE(fish_test_helper src/fish_test_helper.cpp)
|
|
|
|
|
2017-09-01 07:31:51 +00:00
|
|
|
# Set up tests.
|
2017-11-07 00:31:42 +00:00
|
|
|
INCLUDE(cmake/Tests.cmake)
|
2017-10-05 03:45:48 +00:00
|
|
|
|
|
|
|
# Set up install.
|
2017-11-07 00:31:42 +00:00
|
|
|
INCLUDE(cmake/Install.cmake)
|
2017-11-13 14:21:54 +00:00
|
|
|
|
2019-01-26 02:43:52 +00:00
|
|
|
# Mac app.
|
|
|
|
INCLUDE(cmake/MacApp.cmake)
|
|
|
|
|
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
|
|
|
|
SET(LINT_ARGS "-D$<JOIN:$<TARGET_PROPERTY:fishlib,COMPILE_DEFINITIONS>, -D>" "-I$<JOIN:$<TARGET_PROPERTY:fishlib,INCLUDE_DIRECTORIES>, -I>")
|
|
|
|
ADD_CUSTOM_TARGET(lint
|
|
|
|
COMMAND build_tools/lint.fish -- ${LINT_ARGS}
|
|
|
|
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
|
|
|
|
)
|
|
|
|
ADD_CUSTOM_TARGET(lint-all
|
|
|
|
COMMAND build_tools/lint.fish --all -- ${LINT_ARGS}
|
|
|
|
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
|
|
|
|
)
|
|
|
|
|
2017-11-13 14:21:54 +00:00
|
|
|
INCLUDE(FeatureSummary)
|
|
|
|
FEATURE_SUMMARY(WHAT ALL)
|