aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 1de9b7221c6d3feb40a78a298d04705433ff0e71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
cmake_minimum_required(VERSION 3.1.9)
project(cpp-web)

set(CMAKE_CXX_FLAGS "-Wall -Wextra -std=c++17")
set(CMAKE_CXX_FLAGS_DEBUG "-g3 -fpic -fno-omit-frame-pointer -fno-rtti -ffunction-sections -fdata-sections -fsanitize=address -fsanitize=leak")
set(CMAKE_CXX_FLAGS_RELEASE "-Os -fpic -fomit-frame-pointer -ffunction-sections -fdata-sections -flto")
set(CMAKE_EXE_LINKER_FLAGS "-Wl,-gc-sections")

set(INJA_SRCDIR "${PROJECT_SOURCE_DIR}/deps/inja" CACHE STRING
                "Path to the inja source directory.")
if(NOT EXISTS "${INJA_SRCDIR}/single_include/inja/inja.hpp")
    message(FATAL_ERROR "inja missing")
endif()

set(MD4C_SRCDIR "${PROJECT_SOURCE_DIR}/deps/md4c/src" CACHE STRING
                "Path to the md4c source directory.")
if(NOT EXISTS "${MD4C_SRCDIR}/md4c-html.h")
    message(FATAL_ERROR "md4c missing")
endif()

include_directories(${CPP_HTTPLIB_SRCDIR} ${INJA_SRCDIR}/single_include
                                          ${INJA_SRCDIR}/third_party/include
                                          ${MD4C_SRCDIR})
set(MD4C_SOURCES "${MD4C_SRCDIR}/entity.c"
                 "${MD4C_SRCDIR}/md4c.c"
                 "${MD4C_SRCDIR}/md4c-html.c")

file(GLOB_RECURSE SOURCES "src/*.cpp")
add_executable(cpp-web ${MD4C_SOURCES} ${SOURCES})
#target_compile_definitions(cpp-web PUBLIC CPPHTTPLIB_THREAD_POOL_COUNT=4)
#target_compile_options(cpp-web PUBLIC "-std=c++14")
if(CMAKE_BUILD_TYPE MATCHES Release)
    set_target_properties(cpp-web PROPERTIES LINK_FLAGS "-no-pie -flto -Wl,--gc-sections -Wl,-z,norelro -Wl,--hash-style=gnu -Wl,--build-id=none")
endif()
target_link_libraries(cpp-web stdc++fs pthread event magic)