10 lines
234 B
CMake
10 lines
234 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(
|
|
ftxui
|
|
EXCLUDE_FROM_ALL
|
|
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui.git
|
|
GIT_TAG v5.0.0
|
|
GIT_SHALLOW TRUE
|
|
)
|
|
FetchContent_MakeAvailable(ftxui) |