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
|
|
|
|
2021-08-01 10:37:28 +00:00
|
|
|
option(BUILD_SHARED_LIBS "Build shared libraries instead of static libraries" ON)
|
|
|
|
if (ENABLE_OSS_FUZZ)
|
|
|
|
set(BUILD_SHARED_LIBS OFF) # Don't use shared libraries on oss-fuzz, for ease of integration with their infrastructure
|
|
|
|
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
|
|
|
|
)
|
|
|
|
|
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()
|
|
|
|
|
|
|
|
include(lagom_options)
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
find_package(Threads REQUIRED)
|
|
|
|
|
2021-08-17 02:10:34 +00:00
|
|
|
if (ENABLE_LAGOM_CCACHE)
|
|
|
|
find_program(CCACHE_PROGRAM ccache)
|
|
|
|
if(CCACHE_PROGRAM)
|
|
|
|
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2021-09-07 07:50:09 +00:00
|
|
|
include(wasm_spec_tests)
|
2021-05-26 18:34:52 +00:00
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
add_compile_options(-Wno-unknown-warning-option -Wno-literal-suffix -Wno-deprecated-copy)
|
|
|
|
add_compile_options(-O2)
|
|
|
|
add_compile_options(-Wall -Wextra -Werror)
|
|
|
|
add_compile_options(-fPIC -g)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
|
|
|
|
|
|
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
|
|
|
|
if (NOT APPLE)
|
|
|
|
set(CMAKE_INSTALL_RPATH $ORIGIN)
|
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
|
|
|
|
2021-07-28 00:22:12 +00:00
|
|
|
set(CMAKE_INSTALL_MESSAGE NEVER)
|
|
|
|
|
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)
|
2021-07-26 01:37:27 +00:00
|
|
|
add_compile_options(-fsanitize=undefined -fno-sanitize=vptr -fno-omit-frame-pointer)
|
2021-05-12 11:49:19 +00:00
|
|
|
set(LINKER_FLAGS "${LINKER_FLAGS} -fsanitize=undefined -fno-sanitize=vptr")
|
|
|
|
endif()
|
2020-04-05 10:21:03 +00:00
|
|
|
|
2021-05-12 11:49:19 +00:00
|
|
|
if ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang$")
|
|
|
|
# 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)
|
2020-04-05 10:21:03 +00:00
|
|
|
|
2020-04-08 08:40:02 +00:00
|
|
|
if (ENABLE_FUZZER_SANITIZER)
|
2021-07-26 01:37:27 +00:00
|
|
|
add_compile_options(-fsanitize=fuzzer -fno-omit-frame-pointer)
|
2020-11-13 20:47:32 +00:00
|
|
|
set(LINKER_FLAGS "${LINKER_FLAGS} -fsanitize=fuzzer")
|
2020-04-08 08:40:02 +00:00
|
|
|
endif()
|
|
|
|
|
2019-07-26 09:02:47 +00:00
|
|
|
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
2021-07-26 01:37:27 +00:00
|
|
|
add_compile_options(-Wno-expansion-to-defined)
|
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
|
|
|
# FIXME: This is a hack, because the lagom stuff can be built individually or
|
|
|
|
# in combination with the system, we generate two Debug.h files. One in
|
|
|
|
# Build/AK/Debug.h and the other in Build/Meta/Lagom/AK/Debug.h.
|
|
|
|
configure_file(../../AK/Debug.h.in AK/Debug.h @ONLY)
|
|
|
|
configure_file(../../Kernel/Debug.h.in Kernel/Debug.h @ONLY)
|
|
|
|
|
2021-07-25 19:15:47 +00:00
|
|
|
include_directories(../../)
|
|
|
|
include_directories(../../Userland/)
|
|
|
|
include_directories(../../Userland/Libraries/)
|
|
|
|
include_directories(${CMAKE_BINARY_DIR})
|
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
|
2021-07-28 00:22:12 +00:00
|
|
|
# install rules, think about moving to its own helper cmake file
|
|
|
|
# Don't install Lagom libs into the target Root/
|
|
|
|
# FIXME: Remove this check for 4594
|
|
|
|
if (CMAKE_SOURCE_DIR MATCHES ".*/Lagom")
|
|
|
|
include(CMakePackageConfigHelpers)
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
|
|
|
# find_package(<package>) call for consumers to find this project
|
|
|
|
set(package Lagom)
|
|
|
|
|
|
|
|
write_basic_package_version_file(
|
|
|
|
"${package}ConfigVersion.cmake"
|
|
|
|
COMPATIBILITY SameMajorVersion
|
|
|
|
)
|
|
|
|
|
|
|
|
# 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(
|
|
|
|
FILES ${SERENITY_PROJECT_ROOT}/Meta/CMake/lagom-install-config.cmake
|
|
|
|
DESTINATION "${Lagom_INSTALL_CMAKEDIR}"
|
|
|
|
RENAME "${package}Config.cmake"
|
|
|
|
COMPONENT Lagom_Development
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES "${PROJECT_BINARY_DIR}/${package}ConfigVersion.cmake"
|
|
|
|
DESTINATION "${Lagom_INSTALL_CMAKEDIR}"
|
|
|
|
COMPONENT Lagom_Development
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
EXPORT LagomTargets
|
|
|
|
NAMESPACE Lagom::
|
|
|
|
DESTINATION "${Lagom_INSTALL_CMAKEDIR}"
|
|
|
|
COMPONENT Lagom_Development
|
|
|
|
)
|
|
|
|
|
|
|
|
# Manually install AK
|
|
|
|
install(
|
|
|
|
DIRECTORY "${SERENITY_PROJECT_ROOT}/AK"
|
|
|
|
COMPONENT Lagom_Development
|
|
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
|
|
|
FILES_MATCHING PATTERN "*.h"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
function(lagom_lib library fs_name)
|
2021-07-26 01:37:27 +00:00
|
|
|
cmake_parse_arguments(LAGOM_LIBRARY "" "" "SOURCES;LIBS" ${ARGN})
|
2021-07-28 00:22:12 +00:00
|
|
|
set(target_name "Lagom${library}")
|
2021-08-01 10:37:28 +00:00
|
|
|
add_library(${target_name} ${LAGOM_LIBRARY_SOURCES})
|
2021-07-28 00:22:12 +00:00
|
|
|
# alias for pretty exports
|
|
|
|
add_library(Lagom::${library} ALIAS ${target_name})
|
|
|
|
|
|
|
|
set_target_properties(
|
|
|
|
${target_name} PROPERTIES
|
|
|
|
VERSION "${PROJECT_VERSION}"
|
|
|
|
SOVERSION "${PROJECT_VERSION_MAJOR}"
|
|
|
|
EXPORT_NAME ${library}
|
|
|
|
OUTPUT_NAME lagom-${fs_name}
|
|
|
|
)
|
2021-07-26 01:37:27 +00:00
|
|
|
target_link_libraries(${target_name} ${LAGOM_LIBRARY_LIBS})
|
|
|
|
if (NOT ${target_name} STREQUAL "LagomCore")
|
|
|
|
target_link_libraries(${target_name} LagomCore)
|
|
|
|
endif()
|
|
|
|
# Don't install Lagom libs into the target Root/
|
2021-07-28 00:22:12 +00:00
|
|
|
# FIXME: Remove this check for 4594
|
2021-07-25 19:15:47 +00:00
|
|
|
if (CMAKE_SOURCE_DIR MATCHES ".*/Lagom")
|
2021-07-28 00:22:12 +00:00
|
|
|
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}
|
|
|
|
)
|
|
|
|
install(
|
|
|
|
DIRECTORY "${SERENITY_PROJECT_ROOT}/Userland/Libraries/Lib${library}"
|
|
|
|
COMPONENT Lagom_Development
|
|
|
|
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
|
|
|
FILES_MATCHING PATTERN "*.h"
|
|
|
|
)
|
2021-07-25 19:15:47 +00:00
|
|
|
endif()
|
2021-07-26 01:37:27 +00:00
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(lagom_test source)
|
|
|
|
cmake_parse_arguments(LAGOM_TEST "" "" "LIBS" ${ARGN})
|
|
|
|
get_filename_component(name ${source} NAME_WE)
|
|
|
|
add_executable(${name}_lagom ${source})
|
|
|
|
set_target_properties(${name}_lagom PROPERTIES OUTPUT_NAME ${name})
|
|
|
|
target_link_libraries(${name}_lagom LagomCore LagomTest LagomTestMain ${LAGOM_TEST_LIBS})
|
|
|
|
add_test(
|
|
|
|
NAME ${name}
|
|
|
|
COMMAND ${name}_lagom
|
|
|
|
)
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
# AK/Core
|
|
|
|
# Note: AK is included in LagomCore for the host build instead of LibC per the target build
|
2020-10-28 19:01:29 +00:00
|
|
|
file(GLOB AK_SOURCES CONFIGURE_DEPENDS "../../AK/*.cpp")
|
2021-01-12 11:17:30 +00:00
|
|
|
file(GLOB LIBCORE_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibCore/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Core core
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${AK_SOURCES} ${LIBCORE_SOURCES}
|
|
|
|
LIBS Threads::Threads
|
|
|
|
)
|
|
|
|
if (NOT APPLE)
|
|
|
|
target_link_libraries(LagomCore crypt) # Core::Account uses crypt() but it's not in libcrypt on macOS
|
|
|
|
endif()
|
2019-07-25 09:56:08 +00:00
|
|
|
|
2021-08-08 07:31:23 +00:00
|
|
|
# Code Generators and other host tools
|
|
|
|
# We need to make sure not to build code generators for Fuzzer builds, as they already have their own main.cpp
|
|
|
|
if (NOT ENABLE_OSS_FUZZ AND NOT ENABLE_FUZZER_SANITIZER)
|
|
|
|
add_subdirectory(Tools)
|
|
|
|
endif()
|
|
|
|
|
2020-05-06 15:40:06 +00:00
|
|
|
if (BUILD_LAGOM)
|
2021-08-30 02:27:50 +00:00
|
|
|
|
|
|
|
if (NOT TARGET all_generated)
|
|
|
|
# Meta target to run all code-gen steps in the build.
|
|
|
|
add_custom_target(all_generated)
|
|
|
|
endif()
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# Lagom Libraries
|
|
|
|
|
|
|
|
# Archive
|
|
|
|
file(GLOB LIBARCHIVE_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibArchive/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Archive archive
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBARCHIVE_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# Audio
|
|
|
|
file(GLOB LIBAUDIO_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibAudio/*.cpp")
|
|
|
|
list(REMOVE_ITEM LIBAUDIO_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibAudio/ClientConnection.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Audio audio
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBAUDIO_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# Compress
|
|
|
|
file(GLOB LIBCOMPRESS_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibCompress/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Compress compress
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBCOMPRESS_SOURCES}
|
|
|
|
LIBS LagomCrypto
|
|
|
|
)
|
|
|
|
|
|
|
|
# Crypto
|
|
|
|
file(GLOB LIBCRYPTO_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibCrypto/*.cpp")
|
|
|
|
file(GLOB LIBCRYPTO_SUBDIR_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibCrypto/*/*.cpp")
|
|
|
|
file(GLOB LIBCRYPTO_SUBSUBDIR_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibCrypto/*/*/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Crypto crypto
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBCRYPTO_SOURCES} ${LIBCRYPTO_SUBDIR_SOURCES} ${LIBCRYPTO_SUBSUBDIR_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# ELF
|
|
|
|
file(GLOB LIBELF_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibELF/*.cpp")
|
|
|
|
# There's no way we can reliably make the dymamic loading classes cross platform
|
|
|
|
list(FILTER LIBELF_SOURCES EXCLUDE REGEX ".*Dynamic.*.cpp$")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(ELF elf
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBELF_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# Gemini
|
|
|
|
file(GLOB LIBGEMINI_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGemini/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Gemini gemini
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBGEMINI_SOURCES}
|
|
|
|
LIBS LagomTLS
|
|
|
|
)
|
|
|
|
|
|
|
|
# GFX
|
|
|
|
file(GLOB LIBGFX_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGfx/*.cpp")
|
|
|
|
file(GLOB LIBGFX_TTF_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGfx/TrueTypeFont/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Gfx gfx
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBGFX_SOURCES} ${LIBGFX_TTF_SOURCES}
|
|
|
|
LIBS m LagomCompress LagomTextCodec LagomIPC
|
|
|
|
)
|
|
|
|
|
|
|
|
# GUI-GML
|
|
|
|
file(GLOB LIBGUI_GML_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibGUI/GML*.cpp")
|
2021-07-29 18:34:09 +00:00
|
|
|
list(REMOVE_ITEM LIBGUI_GML_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibGUI/GMLAutocompleteProvider.cpp")
|
2021-07-26 01:37:27 +00:00
|
|
|
list(REMOVE_ITEM LIBGUI_GML_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibGUI/GMLSyntaxHighlighter.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(GML gml
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBGUI_GML_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# HTTP
|
|
|
|
file(GLOB LIBHTTP_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibHTTP/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(HTTP http
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBHTTP_SOURCES}
|
|
|
|
LIBS LagomCompress LagomTLS
|
|
|
|
)
|
|
|
|
|
|
|
|
# IMAP
|
|
|
|
file(GLOB LIBIMAP_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibIMAP/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(IMAP imap
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBIMAP_SOURCES}
|
|
|
|
LIBS LagomTLS
|
|
|
|
)
|
|
|
|
|
|
|
|
# IPC
|
|
|
|
file(GLOB LIBIPC_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibIPC/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(IPC ipc
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBIPC_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# JS
|
|
|
|
file(GLOB LIBJS_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibJS/*.cpp")
|
|
|
|
file(GLOB LIBJS_SUBDIR_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibJS/*/*.cpp")
|
|
|
|
file(GLOB LIBJS_SUBSUBDIR_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibJS/*/*/*.cpp")
|
|
|
|
list(REMOVE_ITEM LIBJS_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibJS/SyntaxHighlighter.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(JS js
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBJS_SOURCES} ${LIBJS_SUBDIR_SOURCES} ${LIBJS_SUBSUBDIR_SOURCES}
|
|
|
|
LIBS m LagomCrypto LagomRegex LagomUnicode
|
|
|
|
)
|
|
|
|
|
|
|
|
# Line
|
|
|
|
file(GLOB LIBLINE_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibLine/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Line line
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBLINE_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# Markdown
|
|
|
|
file(GLOB LIBMARKDOWN_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibMarkdown/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Markdown markdown
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBMARKDOWN_SOURCES}
|
|
|
|
LIBS LagomJS
|
|
|
|
)
|
|
|
|
|
|
|
|
# Regex
|
|
|
|
file(GLOB LIBREGEX_LIBC_SOURCES "../../Userland/Libraries/LibRegex/C/Regex.cpp")
|
|
|
|
file(GLOB LIBREGEX_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibRegex/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Regex regex
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBREGEX_SOURCES} ${LIBREGEX_LIBC_SOURCES}
|
2021-07-29 18:18:51 +00:00
|
|
|
LIBS LagomUnicode
|
2021-07-26 01:37:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Shell
|
|
|
|
file(GLOB SHELL_SOURCES CONFIGURE_DEPENDS "../../Userland/Shell/*.cpp")
|
|
|
|
list(REMOVE_ITEM SHELL_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Shell/SyntaxHighlighter.cpp")
|
|
|
|
list(FILTER SHELL_SOURCES EXCLUDE REGEX ".*main.cpp$")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Shell shell
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${SHELL_SOURCES}
|
|
|
|
LIBS LagomLine LagomRegex
|
|
|
|
)
|
|
|
|
|
|
|
|
# SQL
|
|
|
|
file(GLOB_RECURSE LIBSQL_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibSQL/*.cpp")
|
|
|
|
list(REMOVE_ITEM LIBSQL_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibSQL/AST/SyntaxHighlighter.cpp")
|
|
|
|
list(REMOVE_ITEM LIBSQL_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/../../Userland/Libraries/LibSQL/SQLClient.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(SQL sql
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBSQL_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# TextCodec
|
|
|
|
file(GLOB LIBTEXTCODEC_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibTextCodec/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(TextCodec textcodec
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBTEXTCODEC_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# TLS
|
|
|
|
file(GLOB LIBTLS_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibTLS/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(TLS tls
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBTLS_SOURCES}
|
|
|
|
LIBS LagomCrypto
|
|
|
|
)
|
|
|
|
|
|
|
|
# Unicode
|
2021-08-08 07:31:23 +00:00
|
|
|
# Don't include UnicodeData for Fuzzer builds, we didn't build the CodeGenerators
|
2021-07-26 01:37:27 +00:00
|
|
|
if (NOT ENABLE_OSS_FUZZ AND NOT ENABLE_FUZZER_SANITIZER)
|
2021-09-07 07:50:09 +00:00
|
|
|
include(unicode_data)
|
2021-08-08 06:06:55 +00:00
|
|
|
else()
|
|
|
|
set(ENABLE_UNICODE_DATABASE_DOWNLOAD OFF)
|
2021-07-26 01:37:27 +00:00
|
|
|
endif()
|
|
|
|
file(GLOB LIBUNICODE_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibUnicode/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Unicode unicode
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBUNICODE_SOURCES} ${UNICODE_DATA_SOURCES}
|
|
|
|
)
|
2021-08-08 06:06:55 +00:00
|
|
|
target_compile_definitions(LagomUnicode PRIVATE ENABLE_UNICODE_DATA=$<BOOL:${ENABLE_UNICODE_DATABASE_DOWNLOAD}>)
|
2021-07-26 01:37:27 +00:00
|
|
|
|
|
|
|
# WASM
|
|
|
|
file(GLOB LIBWASM_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibWasm/*/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(Wasm wasm
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBWASM_SOURCES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# x86
|
|
|
|
file(GLOB LIBX86_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibX86/*.cpp")
|
2021-07-28 00:22:12 +00:00
|
|
|
lagom_lib(X86 x86
|
2021-07-26 01:37:27 +00:00
|
|
|
SOURCES ${LIBX86_SOURCES}
|
|
|
|
)
|
2020-11-29 12:49:13 +00:00
|
|
|
|
2020-11-29 19:01:40 +00:00
|
|
|
if (NOT ENABLE_OSS_FUZZ AND NOT ENABLE_FUZZER_SANITIZER)
|
2021-07-26 01:37:27 +00:00
|
|
|
# Lagom Examples
|
2020-11-27 22:57:02 +00:00
|
|
|
add_executable(TestApp TestApp.cpp)
|
2021-07-26 01:37:27 +00:00
|
|
|
target_link_libraries(TestApp LagomCore)
|
2020-11-27 22:57:02 +00:00
|
|
|
|
|
|
|
add_executable(TestJson TestJson.cpp)
|
2021-07-26 01:37:27 +00:00
|
|
|
target_link_libraries(TestJson LagomCore)
|
2020-11-27 22:57:02 +00:00
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# Lagom Utilities
|
2021-01-12 10:57:58 +00:00
|
|
|
add_executable(adjtime_lagom ../../Userland/Utilities/adjtime.cpp)
|
2020-11-27 22:57:02 +00:00
|
|
|
set_target_properties(adjtime_lagom PROPERTIES OUTPUT_NAME adjtime)
|
2021-07-26 01:37:27 +00:00
|
|
|
target_link_libraries(adjtime_lagom LagomCore)
|
|
|
|
|
|
|
|
add_executable(disasm_lagom ../../Userland/Utilities/disasm.cpp)
|
|
|
|
set_target_properties(disasm_lagom PROPERTIES OUTPUT_NAME disasm)
|
|
|
|
target_link_libraries(disasm_lagom LagomCore LagomELF LagomX86)
|
|
|
|
|
|
|
|
add_executable(gml-format_lagom ../../Userland/Utilities/gml-format.cpp)
|
|
|
|
set_target_properties(gml-format_lagom PROPERTIES OUTPUT_NAME gml-format)
|
|
|
|
target_link_libraries(gml-format_lagom LagomCore LagomGML)
|
2020-11-27 22:57:02 +00:00
|
|
|
|
2021-01-12 10:57:58 +00:00
|
|
|
add_executable(js_lagom ../../Userland/Utilities/js.cpp)
|
2020-11-27 22:57:02 +00:00
|
|
|
set_target_properties(js_lagom PROPERTIES OUTPUT_NAME js)
|
2021-07-26 01:37:27 +00:00
|
|
|
target_link_libraries(js_lagom LagomJS LagomLine Threads::Threads)
|
2020-11-27 22:57:02 +00:00
|
|
|
|
2021-01-12 10:57:58 +00:00
|
|
|
add_executable(ntpquery_lagom ../../Userland/Utilities/ntpquery.cpp)
|
2020-11-27 22:57:02 +00:00
|
|
|
set_target_properties(ntpquery_lagom PROPERTIES OUTPUT_NAME ntpquery)
|
2021-07-26 01:37:27 +00:00
|
|
|
target_link_libraries(ntpquery_lagom LagomCore)
|
|
|
|
|
|
|
|
add_executable(shell_lagom ../../Userland/Shell/main.cpp)
|
|
|
|
set_target_properties(shell_lagom PROPERTIES OUTPUT_NAME shell)
|
|
|
|
target_link_libraries(shell_lagom LagomCore LagomShell)
|
|
|
|
|
|
|
|
add_executable(wasm_lagom ../../Userland/Utilities/wasm.cpp)
|
|
|
|
set_target_properties(wasm_lagom PROPERTIES OUTPUT_NAME wasm)
|
|
|
|
target_link_libraries(wasm_lagom LagomCore LagomWasm LagomLine)
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
# LibTest
|
|
|
|
file(GLOB LIBTEST_SOURCES CONFIGURE_DEPENDS "../../Userland/Libraries/LibTest/*.cpp")
|
|
|
|
list(FILTER LIBTEST_SOURCES EXCLUDE REGEX ".*Main.cpp$")
|
|
|
|
add_library(
|
|
|
|
LagomTest
|
|
|
|
${LIBTEST_SOURCES}
|
|
|
|
)
|
|
|
|
target_link_libraries(LagomTest LagomCore)
|
|
|
|
set_target_properties(LagomTest PROPERTIES OUTPUT_NAME lagom-test)
|
|
|
|
add_library(
|
|
|
|
LagomTestMain
|
|
|
|
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})
|
|
|
|
lagom_test(${source})
|
|
|
|
endforeach()
|
|
|
|
set_tests_properties(TestJSON PROPERTIES WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/AK)
|
|
|
|
|
|
|
|
# Core
|
|
|
|
lagom_test(../../Tests/LibCore/TestLibCoreIODevice.cpp)
|
|
|
|
set_tests_properties(TestLibCoreIODevice PROPERTIES WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/LibCore)
|
|
|
|
|
|
|
|
# Crypto
|
|
|
|
file(GLOB LIBCRYPTO_TESTS CONFIGURE_DEPENDS "../../Tests/LibCrypto/*.cpp")
|
|
|
|
foreach(source ${LIBCRYPTO_TESTS})
|
|
|
|
lagom_test(${source} LIBS LagomCrypto)
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# Compress
|
|
|
|
file(GLOB LIBCOMPRESS_TESTS CONFIGURE_DEPENDS "../../Tests/LibCompress/*.cpp")
|
|
|
|
foreach(source ${LIBCOMPRESS_TESTS})
|
|
|
|
lagom_test(${source} LIBS LagomCompress)
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# 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})
|
|
|
|
lagom_test(${source} LIBS LagomRegex)
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# SQL
|
|
|
|
file(GLOB LIBSQL_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibSQL/*.cpp")
|
|
|
|
foreach(source ${LIBSQL_TEST_SOURCES})
|
|
|
|
lagom_test(${source} LIBS LagomSQL)
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# TLS
|
|
|
|
file(GLOB LIBTLS_TESTS CONFIGURE_DEPENDS "../../Tests/LibTLS/*.cpp")
|
|
|
|
foreach(source ${LIBTLS_TESTS})
|
|
|
|
lagom_test(${source} LIBS LagomTLS)
|
|
|
|
set_tests_properties(TestTLSHandshake PROPERTIES WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/LibTLS)
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
# Unicode
|
|
|
|
file(GLOB LIBUNICODE_TEST_SOURCES CONFIGURE_DEPENDS "../../Tests/LibUnicode/*.cpp")
|
|
|
|
foreach(source ${LIBUNICODE_TEST_SOURCES})
|
|
|
|
lagom_test(${source} LIBS LagomUnicode)
|
|
|
|
endforeach()
|
2020-11-27 22:57:02 +00:00
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# JavaScriptTestRunner + LibTest tests
|
|
|
|
# test-js
|
2021-05-18 14:15:12 +00:00
|
|
|
add_executable(test-js_lagom
|
|
|
|
../../Tests/LibJS/test-js.cpp
|
|
|
|
../../Userland/Libraries/LibTest/JavaScriptTestRunnerMain.cpp)
|
2020-11-27 22:57:02 +00:00
|
|
|
set_target_properties(test-js_lagom PROPERTIES OUTPUT_NAME test-js)
|
2021-07-26 01:37:27 +00:00
|
|
|
target_link_libraries(test-js_lagom LagomCore LagomTest LagomJS)
|
2021-02-28 22:06:42 +00:00
|
|
|
add_test(
|
|
|
|
NAME JS
|
|
|
|
COMMAND test-js_lagom --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
|
|
|
|
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})
|
|
|
|
lagom_test(${source} LIBS LagomMarkdown)
|
|
|
|
endforeach()
|
|
|
|
set_tests_properties(TestCommonmark PROPERTIES DISABLED YES)
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# test-wasm
|
2021-05-04 03:06:59 +00:00
|
|
|
add_executable(test-wasm_lagom
|
|
|
|
../../Tests/LibWasm/test-wasm.cpp
|
|
|
|
../../Userland/Libraries/LibTest/JavaScriptTestRunnerMain.cpp)
|
|
|
|
set_target_properties(test-wasm_lagom PROPERTIES OUTPUT_NAME test-wasm)
|
2021-07-26 01:37:27 +00:00
|
|
|
target_link_libraries(test-wasm_lagom LagomCore LagomTest LagomWasm LagomJS)
|
2021-05-04 03:06:59 +00:00
|
|
|
add_test(
|
|
|
|
NAME WasmParser
|
|
|
|
COMMAND test-wasm_lagom --show-progress=false
|
|
|
|
)
|
|
|
|
set_tests_properties(WasmParser PROPERTIES
|
2021-07-26 01:37:27 +00:00
|
|
|
ENVIRONMENT SERENITY_SOURCE_DIR=${SERENITY_PROJECT_ROOT}
|
2021-05-26 18:34:52 +00:00
|
|
|
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
|
|
|
|
# test-crypto
|
|
|
|
add_executable(test-crypto_lagom ../../Userland/Utilities/test-crypto.cpp)
|
|
|
|
set_target_properties(test-crypto_lagom PROPERTIES OUTPUT_NAME test-crypto)
|
|
|
|
target_link_libraries(test-crypto_lagom LagomCore LagomTLS LagomCrypto LagomLine)
|
2021-05-30 15:14:16 +00:00
|
|
|
add_test(
|
2021-07-26 01:37:27 +00:00
|
|
|
NAME Crypto
|
|
|
|
COMMAND test-crypto_lagom test -t -s google.com --ca-certs-file ../../Base/etc/ca_certs.ini
|
|
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
2021-05-30 15:14:16 +00:00
|
|
|
)
|
|
|
|
|
2021-07-26 01:37:27 +00:00
|
|
|
# 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}"
|
2021-01-18 06:38:30 +00:00
|
|
|
COMMAND shell_lagom --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()
|
|
|
|
endif()
|
2020-05-06 15:40:06 +00:00
|
|
|
endif()
|
2020-04-11 11:16:17 +00:00
|
|
|
|
2020-11-27 22:57:02 +00:00
|
|
|
if (ENABLE_FUZZER_SANITIZER OR ENABLE_OSS_FUZZ)
|
2020-04-08 08:40:02 +00:00
|
|
|
add_subdirectory(Fuzzers)
|
|
|
|
endif()
|