Older/CMakeLists.txt
2023-12-30 01:19:36 +08:00

13 lines
279 B
CMake

cmake_minimum_required(VERSION 3.17)
project(Older)
include(FetchContent)
FetchContent_Declare(Kylin
GIT_REPOSITORY https://gitea.amass.fun/amass/Kylin.git
)
FetchContent_MakeAvailable(Kylin)
add_subdirectory(Server)
add_subdirectory(ThirdParty)
add_subdirectory(UnitTest)