38 lines
1.4 KiB
CMake
38 lines
1.4 KiB
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(pixwhile CXX)
|
|
|
|
|
|
find_package(nlohmann_json REQUIRED)
|
|
set(HTTPLIB_REQUIRE_OPENSSL ON)
|
|
add_subdirectory(thirdparty/httplib)
|
|
|
|
if (CMAKE_BUILD_TYPE MATCHES "Debug")
|
|
if (NOT FLAGS)
|
|
list(APPEND FLAGS -fsanitize=undefined,thread)
|
|
endif()
|
|
# https://sourceforge.net/p/valgrind/mailman/valgrind-users/thread/Ygze8PzaQAYWlKDj%40wildebeest.org/
|
|
list(APPEND FLAGS -gdwarf-4)
|
|
endif()
|
|
|
|
# https://t.me/NightShadowsHangout/670691
|
|
# # https://t.me/NightShadowsHangout/688372
|
|
list(APPEND FLAGS -Werror -Wall -Wextra -Wshadow -Wpedantic -Wno-gnu-anonymous-struct -fPIC -fno-rtti -Wconversion -Wno-unused-parameter -Wimplicit-fallthrough)
|
|
|
|
# i have no idea why this hack wasn't needed before but it's needed if sanitizers are used
|
|
add_link_options(${FLAGS})
|
|
|
|
|
|
add_executable(${PROJECT_NAME} main.cpp misc.cpp config.cpp servehelper.cpp numberhelper.cpp pixivclient.cpp pixivmodels.cpp
|
|
blankie/serializer.cpp blankie/escape.cpp blankie/murl.cpp
|
|
routes/home.cpp routes/css.cpp routes/artworks.cpp routes/tags.cpp routes/users/common.cpp routes/users/illustrations.cpp)
|
|
set_target_properties(${PROJECT_NAME}
|
|
PROPERTIES
|
|
CXX_STANDARD 20
|
|
CXX_STANDARD_REQUIRED YES
|
|
CXX_EXTENSIONS NO
|
|
)
|
|
target_include_directories(${PROJECT_NAME} PRIVATE thirdparty)
|
|
target_link_libraries(${PROJECT_NAME} PRIVATE nlohmann_json::nlohmann_json httplib::httplib)
|
|
target_compile_options(${PROJECT_NAME} PRIVATE ${FLAGS})
|