wormhole/CMakeLists.txt
nekobit eb3d8afe15 libCURL request init
FossilOrigin-Name: 6dab602897521234a953b99b866baad4ae9437fe45592de1ccea2fa36f686666
2022-10-18 06:03:51 +00:00

112 lines
3.1 KiB
CMake

cmake_minimum_required(VERSION 3.14)
project(wormhole)
set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH};${CMAKE_CURRENT_SOURCE_DIR}/cmake")
include(Module)
# Main
add_executable(wormhole src/main.cpp)
# Separated as a library
add_library(wormhole_lib
src/jsonhelper.cpp
src/database/database.cpp
src/database/sqlite/sqlite.cpp
src/instance/instance.cpp
src/http/httpserver.cpp
src/http/microhttpd_server.cpp
src/http/request.cpp
src/http/response.cpp
src/http/mime.cpp
src/http/error_response.cpp
src/http/request_sender.cpp
src/crypt/rsa.cpp
src/config/config_http.cpp
src/config/config_db.cpp
src/config/config_loader.cpp
src/config/config_instance.cpp
src/logger.cpp)
add_definitions(-DCONFIG_DIR="${CONFIG_DIR}"
-DDATA_DIR="${DATA_DIR}")
# Modules
# Features that can be excluded can be added here
add_module(HOST_META)
add_module(WEBFINGER)
add_module(ACTIVITYPUB)
# General includes
include(CTest)
find_package(RapidJSON)
find_package(CURL)
find_package(PkgConfig REQUIRED)
find_package(Threads REQUIRED)
find_package(SQLite3)
find_package(OpenSSL REQUIRED)
pkg_check_modules(LIBMICROHTTPD REQUIRED libmicrohttpd)
pkg_check_modules(YAML_CPP REQUIRED yaml-cpp)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# C++ settings
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_compile_options(-Wall -Wno-unused-function -Wno-reorder)
# Config directories definition
# TODO customizing
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
message("Warning: Building in Debug mode... This is for development purposes only!\n")
add_compile_options(-Wall -g)
enable_testing()
if(NOT DEFINED CONFIG_DIR)
message("CONFIG_DIR not set: Setting to empty")
set(CONFIG_DIR "." CACHE PATH "Config directory e.g. YAML files")
endif()
if(NOT DEFINED DATA_DIR)
message("DATA_DIR not set: Setting to \"data\"")
set(DATA_DIR "data" CACHE PATH "Data directory e.g. SQLite3 database")
endif()
else()
# Some asserts are in the code...
add_definitions(-DNDEBUG)
add_compile_options(-Wall -Wno-used-function -Wno-reorder -O2)
if(NOT DEFINED CONFIG_DIR)
message("CONFIG_DIR not set: Setting to \"/etc/wormhole/\"")
set(CONFIG_DIR "/etc/wormhole" CACHE PATH "Config directory e.g. YAML files")
endif()
if(NOT DEFINED DATA_DIR)
message("DATA_DIR not set: Setting to \"/usr/share/wormhole\"")
set(DATA_DIR "/usr/share/wormhole" CACHE PATH "Data directory e.g. SQLite3 database")
endif()
endif()
set(WORMHOLE_INCLUDE_DIRS
${LIBMICROHTTPD_INCLUDE_DIRS}
${YAML_CPP_INCLUDE_DIRS}
${SQLite3_INCLUDE_DIRS}
${CURL_INCLUDE_DIRS}
${OPENSSL_INCLUDE_DIR}
${RAPIDJSON_INCLUDE_DIRS}
${PROJECT_SOURCE_DIR}/src/
CACHE INTERNAL "")
include_directories(wormhole ${WORMHOLE_INCLUDE_DIRS})
add_subdirectory(src/protocol)
# automated tests
if(BUILD_TESTING)
add_subdirectory(test)
endif()
target_link_libraries(wormhole wormhole_lib
wormhole_webfinger_module
wormhole_activitypub_module
wormhole_host_meta_module
${CMAKE_DL_LIBS}
${LIBMICROHTTPD_LIBRARIES}
${SQLite3_LIBRARIES}
${YAML_CPP_LIBRARIES}
${CURL_LIBRARIES}
${OPENSSL_CRYPTO_LIBRARIES}
${CMAKE_THREAD_LIBS_INIT})