2023-07-20 19:30:39 +08:00
|
|
|
cmake_minimum_required(VERSION 3.17)
|
|
|
|
|
2023-07-21 16:17:01 +08:00
|
|
|
project(Older)
|
|
|
|
|
|
|
|
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)
|