mirror of
https://github.com/yoboujon/ftxui_template.git
synced 2025-06-08 13:00:50 +02:00
12 lines
222 B
CMake
12 lines
222 B
CMake
include(FetchContent)
|
|
|
|
FetchContent_Declare(ftxui
|
|
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
|
|
GIT_TAG v6.0.2
|
|
)
|
|
|
|
FetchContent_MakeAvailable(ftxui)
|
|
|
|
set(FTXUI_INCLUDE_DIRS
|
|
"${ftxui_SOURCE_DIR}/include"
|
|
)
|