Older/CMakeLists.txt

18 lines
378 B
CMake
Raw Normal View History

2023-07-20 19:30:39 +08:00
cmake_minimum_required(VERSION 3.17)
2023-07-21 16:17:01 +08:00
project(Older)
2024-01-06 00:12:59 +08:00
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2024-01-24 23:19:53 +08:00
set(OPENSSL_LIBRARIES ssl crypto)
2023-07-21 16:17:01 +08:00
include(FetchContent)
FetchContent_Declare(Kylin
GIT_REPOSITORY https://gitea.amass.fun/amass/Kylin.git
)
FetchContent_MakeAvailable(Kylin)
2023-12-30 01:19:36 +08:00
add_subdirectory(Server)
add_subdirectory(ThirdParty)
add_subdirectory(UnitTest)