13 lines
279 B
CMake
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) |