2021-07-26 01:37:27 +00:00
|
|
|
cmake_minimum_required (VERSION 3.16)
|
|
|
|
|
|
|
|
project(
|
|
|
|
Lagom
|
|
|
|
VERSION 0.0.0
|
|
|
|
DESCRIPTION "Host build of SerenityOS libraries and applications"
|
|
|
|
HOMEPAGE_URL "https://github.com/SerenityOS/serenity"
|
|
|
|
LANGUAGES C CXX
|
|
|
|
)
|
2019-07-25 09:56:08 +00:00
|
|
|
|
2022-10-31 14:08:39 +00:00
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS "12")
|
2021-09-07 08:21:36 +00:00
|
|
|
message(FATAL_ERROR
|
2022-10-31 14:08:39 +00:00
|
|
|
"A GCC version less than 12 was detected (${CMAKE_CXX_COMPILER_VERSION}), this is unsupported.\n"
|
2021-09-07 08:21:36 +00:00
|
|
|
"Please re-read the build instructions documentation, and upgrade your host compiler.\n")
|
2021-08-01 10:37:28 +00:00
|
|
|
endif()
|
|
|
|
|
2021-07-25 19:15:47 +00:00
|
|
|
# This is required for CMake (when invoked for a Lagom-only build) to
|
|
|
|
# ignore any files downloading during the build, e.g. UnicodeData.txt.
|
|
|
|
# https://cmake.org/cmake/help/latest/policy/CMP0058.html
|
|
|
|
cmake_policy(SET CMP0058 NEW)
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
get_filename_component(
|
|
|
|
SERENITY_PROJECT_ROOT "${PROJECT_SOURCE_DIR}/../.."
|
|
|
|
ABSOLUTE CACHE
|
|
|
|
)
|
2022-07-04 16:08:01 +00:00
|
|
|
set(SerenityOS_SOURCE_DIR "${SERENITY_PROJECT_ROOT}" CACHE STRING "")
|
2021-07-26 01:37:27 +00:00
|
|
|
|
2022-11-26 02:03:42 +00:00
|
|
|
set(SERENITY_CACHE_DIR "${PROJECT_BINARY_DIR}" CACHE STRING "")
|
|
|
|
|
2021-09-07 07:50:09 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${SERENITY_PROJECT_ROOT}/Meta/CMake")
|
|
|
|
|
2021-09-07 08:08:54 +00:00
|
|
|
if(NOT COMMAND serenity_option)
|
|
|
|
macro(serenity_option)
|
|
|
|
set(${ARGV})
|
|
|
|
endmacro()
|
|
|
|
endif()
|
|
|
|
|
2022-03-18 11:31:36 +00:00
|
|
|
include(check_for_dependencies)
|
2022-12-14 01:57:01 +00:00
|
|
|
include(lagom_options NO_POLICY_SCOPE)
|
2021-09-07 08:08:54 +00:00
|
|
|
|
2021-09-07 08:21:36 +00:00
|
|
|
if(ENABLE_ALL_THE_DEBUG_MACROS)
|
|
|
|
include(all_the_debug_macros)
|
|
|
|
endif()
|
|
|
|
|
2022-12-23 18:36:45 +00:00
|
|
|
# FIXME: Is it worth inventing `serenity_dependent_option` ?
|
|
|
|
if (ENABLE_LAGOM_LADYBIRD)
|
|
|
|
set(ENABLE_LAGOM_LIBWEB ON CACHE BOOL "" FORCE)
|
|
|
|
endif()
|
|
|
|
|
2021-09-07 00:06:46 +00:00
|
|
|
# FIXME: BUILD_SHARED_LIBS has a default of OFF, as it's intended to be set by the
|
2021-11-23 17:34:31 +00:00
|
|
|
# user when configuring the project. We should instead change libjs-test262
|
2021-09-07 00:06:46 +00:00
|
|
|
# and oss-fuzz to set this option on their end, and enable it by default in
|
2022-02-19 23:09:40 +00:00
|
|
|
# Meta/serenity.sh. This is #9867.
|
2021-09-07 08:21:36 +00:00
|
|
|
option(BUILD_SHARED_LIBS "Build shared libraries instead of static libraries" ON)
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
find_package(Threads REQUIRED)
|
2023-01-05 14:47:27 +00:00
|
|
|
# FIXME: This global link libraries is required to workaround linker issues (on some systems)
|
|
|
|
# from the Ladybird import. See https://github.com/SerenityOS/serenity/issues/16847
|
|
|
|
link_libraries(Threads::Threads)
|
2021-07-26 01:37:27 +00:00
|
|
|
|
2021-08-17 02:10:34 +00:00
|
|
|
if (ENABLE_LAGOM_CCACHE)
|
2022-12-06 21:57:20 +00:00
|
|
|
include(setup_ccache)
|
2021-08-17 02:10:34 +00:00
|
|
|
endif()
|
|
|
|
|
2022-03-21 10:36:41 +00:00
|
|
|
if (ENABLE_FUZZERS_LIBFUZZER OR ENABLE_FUZZERS_OSSFUZZ)
|
|
|
|
set(ENABLE_FUZZERS ON)
|
|
|
|
endif()
|
|
|
|
|
2022-10-14 02:14:36 +00:00
|
|
|
# We need to make sure not to build code generators for Fuzzer builds, as they already have their own main.cpp
|
|
|
|
# Instead, we import them from a previous install of Lagom. This mandates a two-stage build for fuzzers.
|
|
|
|
# The same concern goes for cross-compile builds, where we need the tools built for the host
|
|
|
|
set(BUILD_LAGOM_TOOLS ON)
|
|
|
|
if (ENABLE_FUZZERS OR CMAKE_CROSSCOMPILING)
|
|
|
|
find_package(LagomTools REQUIRED)
|
|
|
|
set(BUILD_LAGOM_TOOLS OFF)
|
|
|
|
endif()
|
|
|
|
|
2022-07-25 11:28:16 +00:00
|
|
|
include(flac_spec_tests)
|
2022-05-14 13:07:12 +00:00
|
|
|
include(lagom_compile_options)
|
2021-07-26 01:37:27 +00:00
|
|
|
|
2021-09-15 15:45:49 +00:00
|
|
|
include(GNUInstallDirs) # make sure to include before we mess w/RPATH
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
set(CMAKE_SKIP_BUILD_RPATH FALSE)
|
|
|
|
set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
|
|
|
|
# See slide 100 of the following ppt :^)
|
|
|
|
# https://crascit.com/wp-content/uploads/2019/09/Deep-CMake-For-Library-Authors-Craig-Scott-CppCon-2019.pdf
|
2021-09-15 15:45:49 +00:00
|
|
|
if (APPLE)
|
|
|
|
# FIXME: This doesn't work for the full BUILD_LAGOM=ON build, see #10055
|
|
|
|
set(CMAKE_MACOSX_RPATH TRUE)
|
|
|
|
set(CMAKE_INSTALL_NAME_DIR "@rpath")
|
|
|
|
set(CMAKE_INSTALL_RPATH "@loader_path/../lib")
|
|
|
|
else()
|
|
|
|
set(CMAKE_INSTALL_RPATH "$ORIGIN:$ORIGIN/../${CMAKE_INSTALL_LIBDIR}")
|
2020-11-27 22:57:02 +00:00
|
|
|
endif()
|
2021-07-26 01:37:27 +00:00
|
|
|
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
|
2020-11-27 22:57:02 +00:00
|
|
|
|
2022-10-17 05:55:04 +00:00
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
|
2021-07-28 00:22:12 +00:00
|
|
|
set(CMAKE_INSTALL_MESSAGE NEVER)
|
|
|
|
|
2022-11-20 03:23:14 +00:00
|
|
|
if (EMSCRIPTEN)
|
|
|
|
set(CMAKE_EXECUTABLE_SUFFIX ".js")
|
|
|
|
add_compile_options(-gsource-map)
|
|
|
|
add_link_options(--emrun "SHELL:-s ALLOW_MEMORY_GROWTH")
|
|
|
|
endif()
|
|
|
|
|
2021-05-12 11:49:19 +00:00
|
|
|
if (ENABLE_ADDRESS_SANITIZER)
|
2021-07-26 01:37:27 +00:00
|
|
|
add_compile_options(-fsanitize=address -fno-omit-frame-pointer)
|
2021-05-12 11:49:19 +00:00
|
|
|
set(LINKER_FLAGS "${LINKER_FLAGS} -fsanitize=address")
|
|
|
|
endif()
|
2020-04-05 10:21:03 +00:00
|
|
|
|
2021-05-12 11:49:19 +00:00
|
|
|
if (ENABLE_MEMORY_SANITIZER)
|
2021-07-26 01:37:27 +00:00
|
|
|
add_compile_options(-fsanitize=memory -fsanitize-memory-track-origins -fno-omit-frame-pointer)
|
2021-05-12 11:49:19 +00:00
|
|
|
set(LINKER_FLAGS "${LINKER_FLAGS} -fsanitize=memory -fsanitize-memory-track-origins")
|
|
|
|
endif()
|
2020-04-05 10:21:03 +00:00
|
|
|
|
2021-05-12 11:49:19 +00:00
|
|
|
if (ENABLE_UNDEFINED_SANITIZER)
|
2022-09-14 20:33:46 +00:00
|
|
|
add_compile_options(-fsanitize=undefined -fno-omit-frame-pointer)
|
|
|
|
set(LINKER_FLAGS "${LINKER_FLAGS} -fsanitize=undefined")
|
2021-05-12 11:49:19 +00:00
|
|
|
endif()
|
2020-04-05 10:21:03 +00:00
|
|
|
|
2022-03-21 10:36:41 +00:00
|
|
|
if (ENABLE_FUZZERS)
|
|
|
|
add_compile_options(-fno-omit-frame-pointer)
|
|
|
|
endif()
|
|
|
|
|
2022-12-23 18:36:45 +00:00
|
|
|
if (ENABLE_LAGOM_LADYBIRD AND (ENABLE_FUZZERS OR ENABLE_COMPILER_EXPLORER_BUILD))
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"Ladybird build not supported for Fuzzers or Compiler Explorer."
|
|
|
|
"Disable ENABLE_LAGOM_LADYBIRD and try again."
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2021-09-07 08:21:36 +00:00
|
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang$")
|
2021-05-12 11:49:19 +00:00
|
|
|
# Clang's default constexpr-steps limit is 1048576(2^20), GCC doesn't have one
|
2021-07-26 01:37:27 +00:00
|
|
|
add_compile_options(-Wno-overloaded-virtual -Wno-user-defined-literals -fconstexpr-steps=16777216)
|
2022-04-30 18:04:30 +00:00
|
|
|
# FIXME: Re-enable this check when the warning stops triggering, or document why we can't stop it from triggering.
|
|
|
|
# For now, there is a lot of unused private fields in LibWeb that trigger this that could be removed.
|
|
|
|
# See issue #14137 for details
|
|
|
|
add_compile_options(-Wno-unused-private-field)
|
2020-04-05 10:21:03 +00:00
|
|
|
|
2022-03-29 14:31:51 +00:00
|
|
|
if (ENABLE_FUZZERS_LIBFUZZER)
|
2022-03-21 10:36:41 +00:00
|
|
|
add_compile_options(-fsanitize=fuzzer)
|
2020-11-13 20:47:32 +00:00
|
|
|
set(LINKER_FLAGS "${LINKER_FLAGS} -fsanitize=fuzzer")
|
2020-04-08 08:40:02 +00:00
|
|
|
endif()
|
|
|
|
|
2021-09-07 08:21:36 +00:00
|
|
|
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
2021-07-26 01:37:27 +00:00
|
|
|
add_compile_options(-Wno-expansion-to-defined)
|
2022-03-29 14:31:51 +00:00
|
|
|
if (ENABLE_FUZZERS_LIBFUZZER)
|
2022-02-19 23:09:40 +00:00
|
|
|
message(FATAL_ERROR
|
|
|
|
"Fuzzer Sanitizer (-fsanitize=fuzzer) is only supported for Fuzzer targets with LLVM. "
|
2022-03-21 10:36:41 +00:00
|
|
|
"Reconfigure CMake with -DCMAKE_C_COMPILER and -DCMAKE_CXX_COMPILER pointing to a clang-based toolchain "
|
|
|
|
"or build binaries without built-in fuzzing support by setting -DENABLE_FUZZERS instead."
|
2022-02-19 23:09:40 +00:00
|
|
|
)
|
|
|
|
endif()
|
2019-07-26 09:02:47 +00:00
|
|
|
endif()
|
2019-07-25 09:56:08 +00:00
|
|
|
|
2021-05-12 11:49:19 +00:00
|
|
|
# These are here to support Fuzzili builds further down the directory stack
|
|
|
|
set(ORIGINAL_CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS}")
|
|
|
|
set(ORIGINAL_CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}")
|
|
|
|
set(ORIGINAL_CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS}")
|
|
|
|
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${LINKER_FLAGS}")
|
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${LINKER_FLAGS}")
|
|
|
|
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${LINKER_FLAGS}")
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
configure_file(../../AK/Debug.h.in AK/Debug.h @ONLY)
|
|
|
|
|
2021-07-25 19:15:47 +00:00
|
|
|
include_directories(../../)
|
|
|
|
include_directories(../../Userland/)
|
|
|
|
include_directories(../../Userland/Libraries/)
|
2022-07-04 16:08:01 +00:00
|
|
|
include_directories(../../Userland/Services)
|
2021-07-25 19:15:47 +00:00
|
|
|
include_directories(${CMAKE_BINARY_DIR})
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
2022-10-14 02:14:36 +00:00
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}/Userland/Libraries)
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR}/Userland/Services)
|
2021-07-25 19:15:47 +00:00
|
|
|
|
2021-07-28 00:22:12 +00:00
|
|
|
# install rules, think about moving to its own helper cmake file
|
2021-09-07 08:21:36 +00:00
|
|
|
include(CMakePackageConfigHelpers)
|
|
|
|
|
|
|
|
# find_package(<package>) call for consumers to find this project
|
2022-07-11 07:07:47 +00:00
|
|
|
set(package Lagom CACHE STRING "")
|
2021-09-07 08:21:36 +00:00
|
|
|
|
|
|
|
# Allow package maintainers to freely override the path for the configs
|
|
|
|
set(Lagom_INSTALL_CMAKEDIR "${CMAKE_INSTALL_DATADIR}/${package}"
|
|
|
|
CACHE PATH "CMake package config location relative to the install prefix")
|
|
|
|
mark_as_advanced(Lagom_INSTALL_CMAKEDIR)
|
|
|
|
|
|
|
|
install(
|
2022-08-28 23:47:03 +00:00
|
|
|
FILES "${SERENITY_PROJECT_ROOT}/Meta/CMake/lagom-install-config.cmake"
|
2021-09-07 08:21:36 +00:00
|
|
|
DESTINATION "${Lagom_INSTALL_CMAKEDIR}"
|
2022-08-28 23:47:03 +00:00
|
|
|
RENAME "${package}Config.cmake"
|
2021-09-07 08:21:36 +00:00
|
|
|
COMPONENT Lagom_Development
|
|
|
|
)
|
2021-07-28 00:22:12 +00:00
|
|
|
|
2021-09-07 08:21:36 +00:00
|
|
|
install(
|
|
|
|
EXPORT LagomTargets
|
|
|
|
NAMESPACE Lagom::
|
|
|
|
DESTINATION "${Lagom_INSTALL_CMAKEDIR}"
|
|
|
|
COMPONENT Lagom_Development
|
|
|
|
)
|
2021-07-28 00:22:12 +00:00
|
|
|
|
2022-10-17 05:48:14 +00:00
|
|
|
function(lagom_lib target_name fs_name)
|
2022-10-13 20:07:09 +00:00
|
|
|
cmake_parse_arguments(LAGOM_LIBRARY "" "LIBRARY_TYPE" "SOURCES;LIBS" ${ARGN})
|
2022-10-17 05:48:14 +00:00
|
|
|
string(REPLACE "Lib" "" library ${target_name})
|
2022-10-13 20:07:09 +00:00
|
|
|
if (NOT LAGOM_LIBRARY_LIBRARY_TYPE)
|
|
|
|
set(LAGOM_LIBRARY_LIBRARY_TYPE "")
|
2022-10-01 14:08:26 +00:00
|
|
|
endif()
|
2022-10-13 20:07:09 +00:00
|
|
|
add_library(${target_name} ${LAGOM_LIBRARY_LIBRARY_TYPE} ${LAGOM_LIBRARY_SOURCES})
|
2022-02-19 23:09:40 +00:00
|
|
|
# Don't make alias when we're going to import a previous build for Tools
|
|
|
|
# FIXME: Is there a better way to write this?
|
2022-07-11 07:07:47 +00:00
|
|
|
if (NOT ENABLE_FUZZERS AND NOT CMAKE_CROSSCOMPILING)
|
2022-02-19 23:09:40 +00:00
|
|
|
# alias for parity with exports
|
|
|
|
add_library(Lagom::${library} ALIAS ${target_name})
|
|
|
|
endif()
|
2021-07-28 00:22:12 +00:00
|
|
|
|
|
|
|
set_target_properties(
|
|
|
|
${target_name} PROPERTIES
|
|
|
|
VERSION "${PROJECT_VERSION}"
|
|
|
|
SOVERSION "${PROJECT_VERSION_MAJOR}"
|
|
|
|
EXPORT_NAME ${library}
|
|
|
|
OUTPUT_NAME lagom-${fs_name}
|
|
|
|
)
|
2022-10-21 19:43:56 +00:00
|
|
|
target_link_libraries(${target_name} PRIVATE ${LAGOM_LIBRARY_LIBS})
|
2022-07-04 14:48:19 +00:00
|
|
|
if (NOT ${target_name} STREQUAL "LibCore")
|
2022-10-21 19:43:56 +00:00
|
|
|
target_link_libraries(${target_name} PRIVATE LibCore)
|
2021-07-26 01:37:27 +00:00
|
|
|
endif()
|
2021-09-07 08:21:36 +00:00
|
|
|
install(
|
|
|
|
TARGETS ${target_name}
|
|
|
|
EXPORT LagomTargets
|
|
|
|
RUNTIME #
|
|
|
|
COMPONENT Lagom_Runtime
|
|
|
|
LIBRARY #
|
|
|
|
COMPONENT Lagom_Runtime
|
|
|
|
NAMELINK_COMPONENT Lagom_Development
|
|
|
|
ARCHIVE #
|
2021-07-28 00:22:12 +00:00
|
|
|
COMPONENT Lagom_Development
|
2021-09-07 08:21:36 +00:00
|
|
|
INCLUDES #
|
2021-07-28 00:22:12 +00:00
|
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
2021-09-07 08:21:36 +00:00
|
|
|
)
|
2022-10-13 20:07:09 +00:00
|
|
|
# FIXME: Move this to serenity_install_headers
|
2021-09-07 08:21:36 +00:00
|
|
|
install(
|
|
|
|
DIRECTORY "${SERENITY_PROJECT_ROOT}/Userland/Libraries/Lib${library}"
|
|
|
|
COMPONENT Lagom_Development
|
|
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
|
|
|
FILES_MATCHING PATTERN "*.h"
|
|
|
|
)
|
2022-10-17 05:49:52 +00:00
|
|
|
serenity_generated_sources(${target_name})
|
2021-07-26 01:37:27 +00:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(lagom_test source)
|
2021-11-21 20:18:27 +00:00
|
|
|
cmake_parse_arguments(LAGOM_TEST "" "WORKING_DIRECTORY" "LIBS" ${ARGN})
|
2021-07-26 01:37:27 +00:00
|
|
|
get_filename_component(name ${source} NAME_WE)
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(${name} ${source})
|
2023-01-15 21:12:11 +00:00
|
|
|
target_link_libraries(${name} PRIVATE LibCore LibTest LibTestMain ${LAGOM_TEST_LIBS})
|
2021-07-26 01:37:27 +00:00
|
|
|
add_test(
|
|
|
|
NAME ${name}
|
2022-10-14 02:34:34 +00:00
|
|
|
COMMAND ${name}
|
2021-11-21 20:18:27 +00:00
|
|
|
WORKING_DIRECTORY ${LAGOM_TEST_WORKING_DIRECTORY}
|
2021-07-26 01:37:27 +00:00
|
|
|
)
|
|
|
|
endfunction()
|
|
|
|
|
2022-07-04 16:08:01 +00:00
|
|
|
function(serenity_bin name)
|
|
|
|
add_executable(${name} ${SOURCES} ${GENERATED_SOURCES})
|
|
|
|
add_executable(Lagom::${name} ALIAS ${name})
|
|
|
|
install(
|
|
|
|
TARGETS ${target_name}
|
|
|
|
EXPORT LagomTargets
|
|
|
|
RUNTIME #
|
|
|
|
COMPONENT Lagom_Runtime
|
|
|
|
LIBRARY #
|
|
|
|
COMPONENT Lagom_Runtime
|
|
|
|
NAMELINK_COMPONENT Lagom_Development
|
|
|
|
ARCHIVE #
|
|
|
|
COMPONENT Lagom_Development
|
|
|
|
INCLUDES #
|
|
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
|
|
|
)
|
2022-10-17 05:49:52 +00:00
|
|
|
serenity_generated_sources(${name})
|
2022-07-04 16:08:01 +00:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(serenity_lib name fs_name)
|
2022-10-17 05:48:14 +00:00
|
|
|
lagom_lib(${name} ${fs_name} SOURCES ${SOURCES} ${GENERATED_SOURCES})
|
2022-10-13 20:07:09 +00:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(serenity_lib_static name fs_name)
|
2022-10-17 05:48:14 +00:00
|
|
|
lagom_lib(${name} ${fs_name} LIBRARY_TYPE STATIC SOURCES ${SOURCES} ${GENERATED_SOURCES})
|
2022-10-13 20:07:09 +00:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(serenity_install_headers dir)
|
2022-07-04 16:08:01 +00:00
|
|
|
endfunction()
|
|
|
|
|
2022-10-13 20:07:09 +00:00
|
|
|
function(serenity_install_sources dir)
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
macro(add_serenity_subdirectory path)
|
|
|
|
add_subdirectory("${SERENITY_PROJECT_ROOT}/${path}" "${CMAKE_CURRENT_BINARY_DIR}/${path}")
|
|
|
|
endmacro()
|
|
|
|
|
2022-07-04 16:08:01 +00:00
|
|
|
add_custom_target(components ALL)
|
|
|
|
option(BUILD_EVERYTHING "Build all optional components" ON)
|
|
|
|
|
2021-12-22 21:33:38 +00:00
|
|
|
if (NOT TARGET all_generated)
|
|
|
|
# Meta target to run all code-gen steps in the build.
|
|
|
|
add_custom_target(all_generated)
|
|
|
|
endif()
|
|
|
|
|
2022-10-13 20:07:09 +00:00
|
|
|
# Create mostly empty targets for system libraries we don't need to build for Lagom
|
|
|
|
add_library(LibC INTERFACE)
|
|
|
|
add_library(LibCrypt INTERFACE)
|
2022-10-23 22:05:33 +00:00
|
|
|
add_library(LibSystem INTERFACE)
|
2022-11-20 03:23:14 +00:00
|
|
|
if (NOT APPLE AND NOT ANDROID AND NOT EMSCRIPTEN AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD")
|
2022-10-13 20:07:09 +00:00
|
|
|
target_link_libraries(LibCrypt INTERFACE crypt) # LibCore::Account uses crypt() but it's not in libcrypt on macOS
|
2021-07-26 01:37:27 +00:00
|
|
|
endif()
|
2022-10-23 22:05:33 +00:00
|
|
|
if (SERENITYOS)
|
|
|
|
# Serenity only allows syscalls from LibSystem, so if someone asks for that on Lagom,
|
|
|
|
# we need to pass that through to the system's LibSystem.
|
|
|
|
target_link_libraries(LibSystem INTERFACE system)
|
|
|
|
endif()
|
2022-10-13 20:07:09 +00:00
|
|
|
add_library(NoCoverage INTERFACE)
|
|
|
|
# "install" these special targets to placate CMake
|
2022-10-23 22:05:33 +00:00
|
|
|
install(TARGETS LibC LibCrypt LibSystem NoCoverage EXPORT LagomTargets)
|
2022-10-13 20:07:09 +00:00
|
|
|
|
|
|
|
# AK/LibCore
|
|
|
|
# Note: AK is included in LibCore for the host build instead of LibC per the target build
|
|
|
|
add_serenity_subdirectory(AK)
|
|
|
|
add_serenity_subdirectory(Userland/Libraries/LibCore)
|
2022-10-21 19:43:56 +00:00
|
|
|
target_link_libraries(LibCore PRIVATE Threads::Threads)
|
2022-10-13 20:07:09 +00:00
|
|
|
target_sources(LibCore PRIVATE ${AK_SOURCES})
|
2019-07-25 09:56:08 +00:00
|
|
|
|
2022-07-04 14:48:19 +00:00
|
|
|
# LibMain
|
2022-10-13 20:07:09 +00:00
|
|
|
add_serenity_subdirectory(Userland/Libraries/LibMain)
|
2021-11-23 17:34:31 +00:00
|
|
|
|
2022-07-04 14:48:19 +00:00
|
|
|
# LibTimeZone
|
2021-12-22 21:33:38 +00:00
|
|
|
# This is needed even if Lagom is not enabled because it is depended upon by code generators.
|
2022-10-13 21:54:06 +00:00
|
|
|
add_serenity_subdirectory(Userland/Libraries/LibTimeZone)
|
|
|
|
# We need an install rule for LibTimeZone b/c it is a manual OBJECT library instead of serenity_lib
|
|
|
|
install(TARGETS LibTimeZone EXPORT LagomTargets)
|
2021-12-22 21:33:38 +00:00
|
|
|
|
2022-08-22 13:50:06 +00:00
|
|
|
# LibIDL
|
2022-09-21 17:22:16 +00:00
|
|
|
# This is used by the BindingsGenerator so needs to always be built.
|
2022-10-14 02:14:36 +00:00
|
|
|
add_serenity_subdirectory(Userland/Libraries/LibIDL)
|
2022-08-22 13:50:06 +00:00
|
|
|
|
2021-09-07 08:21:36 +00:00
|
|
|
# Manually install AK headers
|
|
|
|
install(
|
|
|
|
DIRECTORY "${SERENITY_PROJECT_ROOT}/AK"
|
|
|
|
COMPONENT Lagom_Development
|
|
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
|
|
|
FILES_MATCHING PATTERN "*.h"
|
|
|
|
)
|
|
|
|
|
2021-08-08 07:31:23 +00:00
|
|
|
# Code Generators and other host tools
|
2022-10-14 02:14:36 +00:00
|
|
|
if (BUILD_LAGOM_TOOLS)
|
2021-08-08 07:31:23 +00:00
|
|
|
add_subdirectory(Tools)
|
|
|
|
endif()
|
|
|
|
|
2020-05-06 15:40:06 +00:00
|
|
|
if (BUILD_LAGOM)
|
2021-07-26 01:37:27 +00:00
|
|
|
# Lagom Libraries
|
2022-10-14 02:14:36 +00:00
|
|
|
set(lagom_standard_libraries
|
|
|
|
Archive
|
|
|
|
Audio
|
|
|
|
Compress
|
|
|
|
Crypto
|
|
|
|
DNS
|
|
|
|
Gemini
|
|
|
|
Gfx
|
|
|
|
GL
|
2022-08-28 17:23:30 +00:00
|
|
|
GLSL
|
2022-10-14 02:14:36 +00:00
|
|
|
GPU
|
|
|
|
HTTP
|
|
|
|
IMAP
|
|
|
|
IPC
|
|
|
|
JS
|
|
|
|
Line
|
|
|
|
Locale
|
|
|
|
Markdown
|
|
|
|
PDF
|
|
|
|
Regex
|
|
|
|
SoftGPU
|
|
|
|
SQL
|
|
|
|
Syntax
|
|
|
|
TextCodec
|
|
|
|
Threading
|
|
|
|
TLS
|
|
|
|
Unicode
|
|
|
|
Video
|
|
|
|
Wasm
|
|
|
|
WebSocket
|
|
|
|
XML
|
2021-07-26 01:37:27 +00:00
|
|
|
)
|
|
|
|
|
2022-09-12 19:35:54 +00:00
|
|
|
if (ENABLE_LAGOM_LIBWEB)
|
2022-10-14 02:14:36 +00:00
|
|
|
list(APPEND lagom_standard_libraries Web)
|
2022-04-03 16:21:22 +00:00
|
|
|
|
2022-10-14 02:14:36 +00:00
|
|
|
# WebView
|
2022-10-06 12:09:45 +00:00
|
|
|
list(APPEND LIBWEBVIEW_SOURCES "../../Userland/Libraries/LibWebView/DOMTreeModel.cpp")
|
2022-12-18 22:44:08 +00:00
|
|
|
list(APPEND LIBWEBVIEW_SOURCES "../../Userland/Libraries/LibWebView/StylePropertiesModel.cpp")
|
2023-01-12 19:27:17 +00:00
|
|
|
list(APPEND LIBWEBVIEW_SOURCES "../../Userland/Libraries/LibWebView/ViewImplementation.cpp")
|
2022-10-06 12:09:45 +00:00
|
|
|
list(APPEND LIBWEBVIEW_SOURCES "../../Userland/Libraries/LibWebView/WebContentClient.cpp")
|
2022-10-06 14:35:53 +00:00
|
|
|
|
|
|
|
compile_ipc(${SERENITY_PROJECT_ROOT}/Userland/Services/WebContent/WebContentServer.ipc WebContent/WebContentServerEndpoint.h)
|
|
|
|
compile_ipc(${SERENITY_PROJECT_ROOT}/Userland/Services/WebContent/WebContentClient.ipc WebContent/WebContentClientEndpoint.h)
|
2022-11-09 02:59:31 +00:00
|
|
|
compile_ipc(${SERENITY_PROJECT_ROOT}/Userland/Services/WebContent/WebDriverClient.ipc WebContent/WebDriverClientEndpoint.h)
|
|
|
|
compile_ipc(${SERENITY_PROJECT_ROOT}/Userland/Services/WebContent/WebDriverServer.ipc WebContent/WebDriverServerEndpoint.h)
|
2022-10-06 14:35:53 +00:00
|
|
|
|
|
|
|
list(APPEND LIBWEBVIEW_GENERATED_SOURCES WebContent/WebContentClientEndpoint.h)
|
|
|
|
list(APPEND LIBWEBVIEW_GENERATED_SOURCES WebContent/WebContentServerEndpoint.h)
|
2022-11-09 02:59:31 +00:00
|
|
|
list(APPEND LIBWEBVIEW_GENERATED_SOURCES WebContent/WebDriverClientEndpoint.h)
|
|
|
|
list(APPEND LIBWEBVIEW_GENERATED_SOURCES WebContent/WebDriverServerEndpoint.h)
|
2022-10-06 14:35:53 +00:00
|
|
|
|
2022-10-17 05:49:52 +00:00
|
|
|
set(GENERATED_SOURCES ${LIBWEBVIEW_GENERATED_SOURCES})
|
2022-10-17 05:48:14 +00:00
|
|
|
lagom_lib(LibWebView webview
|
2022-10-06 14:35:53 +00:00
|
|
|
SOURCES ${LIBWEBVIEW_SOURCES} ${LIBWEBVIEW_GENERATED_SOURCES}
|
2022-10-21 19:43:56 +00:00
|
|
|
LIBS LibGfx LibGUI LibIPC LibWeb)
|
2022-10-17 05:49:52 +00:00
|
|
|
unset(GENERATED_SOURCES)
|
2022-10-06 12:09:45 +00:00
|
|
|
endif()
|
2022-09-25 10:10:28 +00:00
|
|
|
|
2022-02-08 16:11:03 +00:00
|
|
|
# FIXME: Excluding arm64 is a temporary hack to circumvent a build problem
|
2022-01-17 23:54:36 +00:00
|
|
|
# for Lagom on Apple M1
|
2022-11-20 03:23:14 +00:00
|
|
|
if (NOT CMAKE_SYSTEM_PROCESSOR MATCHES "arm64" AND NOT EMSCRIPTEN)
|
2022-10-14 02:14:36 +00:00
|
|
|
# FIXME: Create a LIBELF_SOURCES macro similar to AK
|
|
|
|
file(GLOB LIBELF_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibELF/*.cpp")
|
|
|
|
# There's no way we can reliably make the dynamic loading classes cross platform
|
|
|
|
list(FILTER LIBELF_SOURCES EXCLUDE REGEX ".*Dynamic.*.cpp$")
|
2022-10-17 05:48:14 +00:00
|
|
|
lagom_lib(LibELF elf
|
2022-10-14 02:14:36 +00:00
|
|
|
SOURCES ${LIBELF_SOURCES}
|
2022-01-17 23:54:36 +00:00
|
|
|
)
|
2022-10-14 02:14:36 +00:00
|
|
|
list(APPEND lagom_standard_libraries X86)
|
2022-01-17 23:54:36 +00:00
|
|
|
endif()
|
2020-11-29 12:49:13 +00:00
|
|
|
|
2022-10-14 02:14:36 +00:00
|
|
|
foreach(lib IN LISTS lagom_standard_libraries)
|
|
|
|
add_serenity_subdirectory("Userland/Libraries/Lib${lib}")
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# GUI
|
|
|
|
set(LIBGUI_SOURCES
|
|
|
|
GML/Lexer.cpp
|
|
|
|
GML/Parser.cpp
|
|
|
|
GML/SyntaxHighlighter.cpp
|
|
|
|
Icon.cpp
|
|
|
|
Model.cpp
|
|
|
|
ModelIndex.cpp
|
|
|
|
)
|
|
|
|
list(TRANSFORM LIBGUI_SOURCES PREPEND "${SERENITY_PROJECT_ROOT}/Userland/Libraries/LibGUI/")
|
2022-10-17 05:48:14 +00:00
|
|
|
lagom_lib(LibGUI gui
|
2022-10-14 02:14:36 +00:00
|
|
|
SOURCES ${LIBGUI_SOURCES}
|
|
|
|
LIBS LibGfx LibSyntax)
|
|
|
|
|
|
|
|
# FIXME: Why doesn't RPATH of the tests handle this properly?
|
|
|
|
set_target_properties(LibSoftGPU PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
|
|
|
# FIXME: LibLocaleData is an object lib in Lagom, because the weak symbol trick we use on serenity
|
|
|
|
# straight up isn't supposed to work per ELF rules
|
2022-10-21 19:43:56 +00:00
|
|
|
target_link_libraries(LibLocale PRIVATE LibTimeZone)
|
2022-12-13 15:07:23 +00:00
|
|
|
if (ENABLE_UNICODE_DATABASE_DOWNLOAD)
|
|
|
|
install(TARGETS LibLocaleData EXPORT LagomTargets)
|
|
|
|
endif()
|
2022-10-14 02:14:36 +00:00
|
|
|
|
|
|
|
add_serenity_subdirectory(Userland/Shell)
|
2022-03-26 17:02:57 +00:00
|
|
|
|
2022-12-23 18:36:45 +00:00
|
|
|
if (ENABLE_LAGOM_LADYBIRD)
|
|
|
|
add_serenity_subdirectory(Ladybird)
|
|
|
|
endif()
|
|
|
|
|
2022-07-20 06:13:12 +00:00
|
|
|
if (NOT ENABLE_FUZZERS AND NOT ENABLE_COMPILER_EXPLORER_BUILD AND NOT ANDROID)
|
2022-07-04 16:08:01 +00:00
|
|
|
# Lagom Services
|
2022-10-14 02:14:36 +00:00
|
|
|
add_serenity_subdirectory(Userland/Services)
|
2022-07-04 16:08:01 +00:00
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# Lagom Utilities
|
2022-11-20 03:23:14 +00:00
|
|
|
if (NOT EMSCRIPTEN)
|
|
|
|
add_executable(adjtime ../../Userland/Utilities/adjtime.cpp)
|
|
|
|
target_link_libraries(adjtime LibCore LibMain)
|
|
|
|
endif()
|
2021-07-26 01:37:27 +00:00
|
|
|
|
2022-02-08 16:11:03 +00:00
|
|
|
# FIXME: Excluding arm64 is a temporary hack to circumvent a build problem
|
2022-01-17 23:54:36 +00:00
|
|
|
# for Lagom on Apple M1
|
2022-11-20 03:23:14 +00:00
|
|
|
if (NOT CMAKE_SYSTEM_PROCESSOR MATCHES "arm64" AND NOT EMSCRIPTEN)
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(disasm ../../Userland/Utilities/disasm.cpp)
|
|
|
|
target_link_libraries(disasm LibCore LibELF LibX86 LibMain)
|
2022-01-17 23:54:36 +00:00
|
|
|
endif()
|
2021-07-26 01:37:27 +00:00
|
|
|
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(gml-format ../../Userland/Utilities/gml-format.cpp)
|
|
|
|
target_link_libraries(gml-format LibCore LibGUI LibMain)
|
2020-11-27 22:57:02 +00:00
|
|
|
|
2022-09-12 19:35:54 +00:00
|
|
|
if (ENABLE_LAGOM_LIBWEB)
|
2022-11-22 01:03:45 +00:00
|
|
|
add_executable(headless-browser ../../Userland/Utilities/headless-browser.cpp ../../Userland/Services/WebContent/WebDriverConnection.cpp)
|
|
|
|
target_link_libraries(headless-browser LibWeb LibWebSocket LibCrypto LibGemini LibHTTP LibJS LibGfx LibMain LibTLS LibIPC LibJS)
|
2022-09-12 19:35:54 +00:00
|
|
|
endif()
|
2022-04-03 16:21:48 +00:00
|
|
|
|
2022-12-26 13:21:54 +00:00
|
|
|
add_executable(icc ../../Userland/Utilities/icc.cpp)
|
|
|
|
target_link_libraries(icc LibCore LibGfx LibMain)
|
|
|
|
|
2023-01-08 23:03:39 +00:00
|
|
|
add_executable(ttfdisasm ../../Userland/Utilities/ttfdisasm.cpp)
|
|
|
|
target_link_libraries(ttfdisasm LibGfx LibMain)
|
|
|
|
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(js ../../Userland/Utilities/js.cpp)
|
2022-10-21 19:43:56 +00:00
|
|
|
target_link_libraries(js LibCrypto LibJS LibLine LibLocale LibMain LibTextCodec Threads::Threads)
|
2022-11-20 03:23:41 +00:00
|
|
|
if (EMSCRIPTEN)
|
|
|
|
add_executable(libjs Wasm/js_repl.cpp)
|
2022-12-05 21:49:32 +00:00
|
|
|
target_link_libraries(libjs LibJS LibLocale LibTimeZone LibUnicode)
|
2022-11-20 03:23:41 +00:00
|
|
|
target_link_options(libjs PRIVATE
|
|
|
|
-sEXPORTED_FUNCTIONS=_initialize_repl,_execute
|
|
|
|
-sEXPORTED_RUNTIME_METHODS=allocateUTF8
|
|
|
|
-sERROR_ON_UNDEFINED_SYMBOLS=0
|
|
|
|
-sENVIRONMENT=web)
|
|
|
|
endif()
|
2020-11-27 22:57:02 +00:00
|
|
|
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(markdown-check ../../Userland/Utilities/markdown-check.cpp)
|
|
|
|
target_link_libraries(markdown-check LibMarkdown LibMain)
|
2021-09-10 19:37:42 +00:00
|
|
|
|
2022-11-20 03:23:14 +00:00
|
|
|
if (NOT EMSCRIPTEN)
|
|
|
|
add_executable(ntpquery ../../Userland/Utilities/ntpquery.cpp)
|
|
|
|
target_link_libraries(ntpquery LibCore LibMain)
|
|
|
|
endif()
|
2021-07-26 01:37:27 +00:00
|
|
|
|
2022-12-09 22:09:08 +00:00
|
|
|
add_executable(sql ../../Userland/Utilities/sql.cpp)
|
|
|
|
target_link_libraries(sql LibCore LibIPC LibLine LibMain LibSQL)
|
|
|
|
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(test262-runner ../../Tests/LibJS/test262-runner.cpp)
|
|
|
|
target_link_libraries(test262-runner LibJS LibCore)
|
2022-09-11 07:14:32 +00:00
|
|
|
|
2022-12-18 16:07:15 +00:00
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
|
|
include(CheckCSourceCompiles)
|
|
|
|
# Check for musl's declaration of __assert_fail
|
|
|
|
check_c_source_compiles(
|
|
|
|
"
|
|
|
|
#include <assert.h>
|
|
|
|
__attribute__((__noreturn__)) void __assert_fail(char const* assertion, char const* file, int line, char const* function) {}
|
|
|
|
int main() {}
|
|
|
|
"
|
|
|
|
ASSERT_FAIL_HAS_INT
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
if (ASSERT_FAIL_HAS_INT OR EMSCRIPTEN)
|
|
|
|
target_compile_definitions(test262-runner PRIVATE ASSERT_FAIL_HAS_INT)
|
|
|
|
endif()
|
|
|
|
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(wasm ../../Userland/Utilities/wasm.cpp)
|
|
|
|
target_link_libraries(wasm LibCore LibWasm LibLine LibMain)
|
2021-07-26 01:37:27 +00:00
|
|
|
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(xml ../../Userland/Utilities/xml.cpp)
|
|
|
|
target_link_libraries(xml LibCore LibXML LibMain)
|
2022-03-26 17:02:57 +00:00
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
enable_testing()
|
|
|
|
# LibTest
|
|
|
|
file(GLOB LIBTEST_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibTest/*.cpp")
|
|
|
|
list(FILTER LIBTEST_SOURCES EXCLUDE REGEX ".*Main.cpp$")
|
|
|
|
add_library(
|
2022-07-04 14:48:19 +00:00
|
|
|
LibTest
|
2021-07-26 01:37:27 +00:00
|
|
|
${LIBTEST_SOURCES}
|
|
|
|
)
|
2022-10-21 19:43:56 +00:00
|
|
|
target_link_libraries(LibTest PRIVATE LibCore)
|
2022-07-04 14:48:19 +00:00
|
|
|
set_target_properties(LibTest PROPERTIES OUTPUT_NAME lagom-test)
|
2021-07-26 01:37:27 +00:00
|
|
|
add_library(
|
2022-07-04 14:48:19 +00:00
|
|
|
LibTestMain
|
2021-07-26 01:37:27 +00:00
|
|
|
OBJECT
|
|
|
|
"${SERENITY_PROJECT_ROOT}/Userland/Libraries/LibTest/TestMain.cpp"
|
|
|
|
)
|
|
|
|
|
|
|
|
# LibTest tests from Tests/
|
|
|
|
# AK
|
|
|
|
file(GLOB AK_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/AK/*.cpp")
|
|
|
|
foreach(source ${AK_TEST_SOURCES})
|
2021-11-21 20:18:27 +00:00
|
|
|
lagom_test(${source} WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/AK)
|
2021-07-26 01:37:27 +00:00
|
|
|
endforeach()
|
2023-01-15 21:12:11 +00:00
|
|
|
target_link_libraries(TestString PRIVATE LibUnicode)
|
2021-07-26 01:37:27 +00:00
|
|
|
|
2022-07-25 11:28:16 +00:00
|
|
|
# LibAudio
|
|
|
|
file(GLOB LIBAUDIO_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibAudio/*.cpp")
|
|
|
|
foreach(source ${LIBAUDIO_TEST_SOURCES})
|
|
|
|
lagom_test(${source} LIBS LibAudio WORKING_DIRECTORY ${FLAC_TEST_PATH})
|
|
|
|
endforeach()
|
|
|
|
|
2022-07-04 14:48:19 +00:00
|
|
|
# LibCore
|
2021-11-21 20:18:27 +00:00
|
|
|
lagom_test(../../Tests/LibCore/TestLibCoreIODevice.cpp WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/LibCore)
|
2021-07-26 01:37:27 +00:00
|
|
|
|
2023-01-18 19:03:14 +00:00
|
|
|
if ((LINUX OR APPLE) AND NOT EMSCRIPTEN)
|
2023-01-17 19:43:36 +00:00
|
|
|
lagom_test(../../Tests/LibCore/TestLibCoreFileWatcher.cpp)
|
|
|
|
endif()
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# Crypto
|
|
|
|
file(GLOB LIBCRYPTO_TESTS CONFIGURE_DEPENDS "../../Tests/LibCrypto/*.cpp")
|
|
|
|
foreach(source ${LIBCRYPTO_TESTS})
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(${source} LIBS LibCrypto)
|
2021-07-26 01:37:27 +00:00
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# Compress
|
2022-03-31 19:07:45 +00:00
|
|
|
file(COPY "${SERENITY_PROJECT_ROOT}/Tests/LibCompress/brotli-test-files" DESTINATION "./")
|
2021-07-26 01:37:27 +00:00
|
|
|
file(GLOB LIBCOMPRESS_TESTS CONFIGURE_DEPENDS "../../Tests/LibCompress/*.cpp")
|
|
|
|
foreach(source ${LIBCOMPRESS_TESTS})
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(${source} LIBS LibCompress)
|
2021-07-26 01:37:27 +00:00
|
|
|
endforeach()
|
|
|
|
|
2021-11-29 17:18:34 +00:00
|
|
|
# GL
|
2022-04-14 23:08:15 +00:00
|
|
|
file(COPY "${SERENITY_PROJECT_ROOT}/Tests/LibGL/reference-images" DESTINATION "./")
|
2021-11-29 17:18:34 +00:00
|
|
|
file(GLOB LIBGL_TESTS CONFIGURE_DEPENDS "../../Tests/LibGL/*.cpp")
|
|
|
|
foreach(source ${LIBGL_TESTS})
|
2022-10-21 19:43:56 +00:00
|
|
|
lagom_test(${source} LIBS LibGfx LibGL LibGPU LibSoftGPU)
|
2021-11-29 17:18:34 +00:00
|
|
|
endforeach()
|
|
|
|
|
2022-09-02 17:08:22 +00:00
|
|
|
# Locale
|
|
|
|
file(GLOB LIBLOCALE_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibLocale/*.cpp")
|
|
|
|
foreach(source ${LIBLOCALE_TEST_SOURCES})
|
|
|
|
lagom_test(${source} LIBS LibLocale LibUnicode)
|
|
|
|
endforeach()
|
|
|
|
|
2021-11-21 19:24:19 +00:00
|
|
|
# PDF
|
|
|
|
file(GLOB LIBPDF_TESTS CONFIGURE_DEPENDS "../../Tests/LibPDF/*.cpp")
|
|
|
|
foreach(source ${LIBPDF_TESTS})
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(${source} LIBS LibPDF WORKING_DIRECTORY ${SERENITY_PROJECT_ROOT}/Base/home/anon/Documents/pdf/)
|
2021-11-21 19:24:19 +00:00
|
|
|
endforeach()
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# Regex
|
|
|
|
file(GLOB LIBREGEX_TESTS CONFIGURE_DEPENDS "../../Tests/LibRegex/*.cpp")
|
|
|
|
# RegexLibC test POSIX <regex.h> and contains many Serenity extensions
|
|
|
|
# It is therefore not reasonable to run it on Lagom
|
|
|
|
list(REMOVE_ITEM LIBREGEX_TESTS "${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/LibRegex/RegexLibC.cpp")
|
|
|
|
foreach(source ${LIBREGEX_TESTS})
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(${source} LIBS LibRegex)
|
2021-07-26 01:37:27 +00:00
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# SQL
|
|
|
|
file(GLOB LIBSQL_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibSQL/*.cpp")
|
|
|
|
foreach(source ${LIBSQL_TEST_SOURCES})
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(${source} LIBS LibSQL)
|
2021-07-26 01:37:27 +00:00
|
|
|
endforeach()
|
|
|
|
|
2022-03-27 19:41:51 +00:00
|
|
|
# TextCodec
|
|
|
|
file(GLOB LIBTEXTCODEC_TESTS CONFIGURE_DEPENDS "../../Tests/LibTextCodec/*.cpp")
|
|
|
|
foreach(source ${LIBTEXTCODEC_TESTS})
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(${source} LIBS LibTextCodec
|
2022-03-27 19:41:51 +00:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/LibTextCodec)
|
|
|
|
endforeach()
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# TLS
|
|
|
|
file(GLOB LIBTLS_TESTS CONFIGURE_DEPENDS "../../Tests/LibTLS/*.cpp")
|
|
|
|
foreach(source ${LIBTLS_TESTS})
|
2022-10-21 19:43:56 +00:00
|
|
|
lagom_test(${source} LIBS LibCrypto LibTLS
|
2021-11-21 20:18:27 +00:00
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/LibTLS)
|
2021-07-26 01:37:27 +00:00
|
|
|
endforeach()
|
|
|
|
|
2022-04-03 15:26:36 +00:00
|
|
|
# TTF
|
|
|
|
file(GLOB LIBTTF_TESTS CONFIGURE_DEPENDS "../../Tests/LibTTF/*.cpp")
|
|
|
|
foreach(source ${LIBTTF_TESTS})
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(${source} LIBS LibGfx)
|
2022-04-03 15:26:36 +00:00
|
|
|
endforeach()
|
|
|
|
|
2022-07-04 14:48:19 +00:00
|
|
|
# LibTimeZone
|
2022-01-10 17:22:47 +00:00
|
|
|
file(GLOB LIBTIMEZONE_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibTimeZone/*.cpp")
|
|
|
|
foreach(source ${LIBTIMEZONE_TEST_SOURCES})
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(${source} LIBS LibTimeZone)
|
2022-01-10 17:22:47 +00:00
|
|
|
|
|
|
|
get_filename_component(target "${source}" NAME_WLE)
|
2022-10-14 02:34:34 +00:00
|
|
|
target_compile_definitions("${target}" PRIVATE ENABLE_TIME_ZONE_DATA=$<BOOL:${ENABLE_TIME_ZONE_DATABASE_DOWNLOAD}>)
|
2022-01-10 17:22:47 +00:00
|
|
|
endforeach()
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# Unicode
|
|
|
|
file(GLOB LIBUNICODE_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibUnicode/*.cpp")
|
2022-09-02 17:08:22 +00:00
|
|
|
foreach(source ${LIBUNICODE_TEST_SOURCES})
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(${source} LIBS LibUnicode)
|
2021-07-26 01:37:27 +00:00
|
|
|
endforeach()
|
2020-11-27 22:57:02 +00:00
|
|
|
|
2022-10-10 01:55:54 +00:00
|
|
|
# Video
|
|
|
|
file(GLOB LIBVIDEO_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibVideo/*.cpp")
|
|
|
|
foreach(source ${LIBVIDEO_TEST_SOURCES})
|
|
|
|
lagom_test(${source} LIBS LibVideo
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/LibVideo)
|
|
|
|
endforeach()
|
|
|
|
|
2023-01-09 21:29:39 +00:00
|
|
|
# Web
|
|
|
|
if (ENABLE_LAGOM_LIBWEB)
|
|
|
|
file(COPY "${SERENITY_PROJECT_ROOT}/Tests/LibWeb/tokenizer-test.html" DESTINATION "./")
|
|
|
|
file(GLOB LIBWEB_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibWeb/*.cpp")
|
|
|
|
foreach(source ${LIBWEB_TEST_SOURCES})
|
|
|
|
lagom_test(${source} LIBS LibWeb
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/LibWeb)
|
|
|
|
endforeach()
|
|
|
|
endif()
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# JavaScriptTestRunner + LibTest tests
|
|
|
|
# test-js
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(test-js
|
2021-05-18 14:15:12 +00:00
|
|
|
../../Tests/LibJS/test-js.cpp
|
|
|
|
../../Userland/Libraries/LibTest/JavaScriptTestRunnerMain.cpp)
|
2022-10-14 02:34:34 +00:00
|
|
|
target_link_libraries(test-js LibCore LibTest LibJS)
|
2021-02-28 22:06:42 +00:00
|
|
|
add_test(
|
|
|
|
NAME JS
|
2022-10-14 02:34:34 +00:00
|
|
|
COMMAND test-js --show-progress=false
|
2020-06-25 12:45:23 +00:00
|
|
|
)
|
2021-07-26 01:37:27 +00:00
|
|
|
set_tests_properties(JS PROPERTIES ENVIRONMENT SERENITY_SOURCE_DIR=${SERENITY_PROJECT_ROOT})
|
2020-11-27 22:57:02 +00:00
|
|
|
|
2022-01-22 13:27:53 +00:00
|
|
|
# Extra tests from Tests/LibJS
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(../../Tests/LibJS/test-invalid-unicode-js.cpp LIBS LibJS)
|
|
|
|
lagom_test(../../Tests/LibJS/test-bytecode-js.cpp LIBS LibJS)
|
2022-09-06 23:14:23 +00:00
|
|
|
lagom_test(../../Tests/LibJS/test-value-js.cpp LIBS LibJS)
|
2021-10-03 11:10:35 +00:00
|
|
|
|
2022-02-22 04:19:04 +00:00
|
|
|
# Spreadsheet
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(test-spreadsheet
|
2022-02-22 04:19:04 +00:00
|
|
|
../../Tests/Spreadsheet/test-spreadsheet.cpp
|
|
|
|
../../Userland/Libraries/LibTest/JavaScriptTestRunnerMain.cpp)
|
2022-10-14 02:34:34 +00:00
|
|
|
target_link_libraries(test-spreadsheet LibCore LibTest LibJS)
|
2022-02-22 04:19:04 +00:00
|
|
|
add_test(
|
|
|
|
NAME Spreadsheet
|
2022-10-14 02:34:34 +00:00
|
|
|
COMMAND test-spreadsheet --show-progress=false
|
2022-02-22 04:19:04 +00:00
|
|
|
)
|
|
|
|
set_tests_properties(Spreadsheet PROPERTIES ENVIRONMENT SERENITY_SOURCE_DIR=${SERENITY_PROJECT_ROOT})
|
|
|
|
|
|
|
|
|
2021-08-29 20:19:12 +00:00
|
|
|
# Markdown
|
2021-09-07 07:50:09 +00:00
|
|
|
include(commonmark_spec)
|
2021-08-29 20:19:12 +00:00
|
|
|
file(GLOB LIBMARKDOWN_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibMarkdown/*.cpp")
|
|
|
|
foreach(source ${LIBMARKDOWN_TEST_SOURCES})
|
2022-07-04 14:48:19 +00:00
|
|
|
lagom_test(${source} LIBS LibMarkdown)
|
2021-08-29 20:19:12 +00:00
|
|
|
endforeach()
|
|
|
|
set_tests_properties(TestCommonmark PROPERTIES DISABLED YES)
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# test-wasm
|
2022-10-14 02:34:34 +00:00
|
|
|
add_executable(test-wasm
|
2021-05-04 03:06:59 +00:00
|
|
|
../../Tests/LibWasm/test-wasm.cpp
|
|
|
|
../../Userland/Libraries/LibTest/JavaScriptTestRunnerMain.cpp)
|
2022-10-14 02:34:34 +00:00
|
|
|
target_link_libraries(test-wasm LibCore LibTest LibWasm LibJS)
|
2022-12-10 19:23:36 +00:00
|
|
|
# FIXME: Don't require passing test-common.js path if you only want to pass a custom Test root path
|
2021-05-04 03:06:59 +00:00
|
|
|
add_test(
|
|
|
|
NAME WasmParser
|
2022-12-10 19:23:36 +00:00
|
|
|
COMMAND test-wasm --show-progress=false ${CMAKE_CURRENT_BINARY_DIR}/Userland/Libraries/LibWasm/Tests ${SERENITY_PROJECT_ROOT}/Userland/Libraries/LibJS/Tests/test-common.js
|
2021-05-04 03:06:59 +00:00
|
|
|
)
|
2022-12-10 19:23:36 +00:00
|
|
|
set_tests_properties(WasmParser PROPERTIES SKIP_RETURN_CODE 1)
|
2021-05-04 03:06:59 +00:00
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# Tests that are not LibTest based
|
|
|
|
# Shell
|
|
|
|
file(GLOB SHELL_TESTS CONFIGURE_DEPENDS "../../Userland/Shell/Tests/*.sh")
|
2020-11-27 22:57:02 +00:00
|
|
|
foreach(TEST_PATH ${SHELL_TESTS})
|
|
|
|
get_filename_component(TEST_NAME ${TEST_PATH} NAME_WE)
|
|
|
|
add_test(
|
|
|
|
NAME "Shell-${TEST_NAME}"
|
2022-10-14 02:14:36 +00:00
|
|
|
COMMAND Shell --skip-shellrc "${TEST_PATH}"
|
2021-07-26 01:37:27 +00:00
|
|
|
WORKING_DIRECTORY ${SERENITY_PROJECT_ROOT}/Userland/Shell/Tests
|
2020-11-27 22:57:02 +00:00
|
|
|
)
|
2021-01-18 06:38:30 +00:00
|
|
|
set_tests_properties("Shell-${TEST_NAME}" PROPERTIES
|
|
|
|
TIMEOUT 10
|
|
|
|
FAIL_REGULAR_EXPRESSION "FAIL"
|
2021-02-27 11:36:11 +00:00
|
|
|
PASS_REGULAR_EXPRESSION "PASS"
|
|
|
|
)
|
2020-11-27 22:57:02 +00:00
|
|
|
endforeach()
|
2022-02-08 16:11:03 +00:00
|
|
|
|
|
|
|
# FIXME: When we are using CMake >= 3.21, the library installations can be replaced with RUNTIME_DEPENDENCIES.
|
|
|
|
# https://cmake.org/cmake/help/latest/command/install.html
|
|
|
|
include(get_linked_lagom_libraries.cmake)
|
2022-10-14 02:34:34 +00:00
|
|
|
get_linked_lagom_libraries(js js_libraries)
|
2022-02-08 16:11:03 +00:00
|
|
|
|
2022-10-14 02:34:34 +00:00
|
|
|
install(TARGETS js ${js_libraries} COMPONENT js)
|
2022-02-08 16:11:03 +00:00
|
|
|
|
|
|
|
set(CPACK_GENERATOR "TGZ")
|
|
|
|
set(CPACK_STRIP_FILES TRUE)
|
|
|
|
set(CPACK_ARCHIVE_COMPONENT_INSTALL ON)
|
|
|
|
set(CPACK_COMPONENTS_ALL js)
|
2022-12-01 09:08:12 +00:00
|
|
|
if (APPLE)
|
|
|
|
if("arm64" IN_LIST CMAKE_OSX_ARCHITECTURES AND "x86_64" IN_LIST CMAKE_OSX_ARCHITECTURES)
|
|
|
|
set(CPACK_SYSTEM_NAME "macOS-universal2")
|
2022-12-05 21:49:32 +00:00
|
|
|
else()
|
2022-12-01 09:08:12 +00:00
|
|
|
set(CPACK_SYSTEM_NAME "macOS-${CMAKE_SYSTEM_PROCESSOR}")
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
set(CPACK_SYSTEM_NAME "${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(CPACK_ARCHIVE_JS_FILE_NAME "serenity-js-${CPACK_SYSTEM_NAME}")
|
|
|
|
set(CPACK_PACKAGE_FILE_NAME "serenity-js-${CPACK_SYSTEM_NAME}")
|
2022-02-08 16:11:03 +00:00
|
|
|
include(CPack)
|
2020-11-27 22:57:02 +00:00
|
|
|
endif()
|
2020-05-06 15:40:06 +00:00
|
|
|
endif()
|
2020-04-11 11:16:17 +00:00
|
|
|
|
2022-03-21 10:36:41 +00:00
|
|
|
if (ENABLE_FUZZERS)
|
2020-04-08 08:40:02 +00:00
|
|
|
add_subdirectory(Fuzzers)
|
2022-07-04 16:08:01 +00:00
|
|
|
else()
|
|
|
|
export_components("${CMAKE_BINARY_DIR}/components.ini")
|
2020-04-08 08:40:02 +00:00
|
|
|
endif()
|