11 lines
223 B
CMake
11 lines
223 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) |