87bb21be58
In this commit several features were added as well. Basic writing feature to a file. Added base64 decoding to the reading feature. Checks whether or not the terminal is too small. Basic help page.
29 lines
779 B
CMake
29 lines
779 B
CMake
cmake_minimum_required(VERSION 3.26.3)
|
|
|
|
include(FetchContent)
|
|
|
|
set(FETCHCONTENT_UPDATES_DISCONNECTED TRUE)
|
|
FetchContent_Declare(ftxui
|
|
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
|
|
GIT_TAG v3.0.0
|
|
)
|
|
|
|
FetchContent_GetProperties(ftxui)
|
|
if(NOT ftxui_POPULATED)
|
|
FetchContent_Populate(ftxui)
|
|
add_subdirectory(${ftxui_SOURCE_DIR} ${ftxui_BINARY_DIR} EXCLUDE_FROM_ALL)
|
|
endif()
|
|
|
|
# ------------------------------------------------------------------------------
|
|
project(vis
|
|
VERSION 1.0
|
|
DESCRIPTION "Vi Scheduler (vis) is a simple TUI program built for managing your schedules in a calendar-like grid."
|
|
LANGUAGES CXX C)
|
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS 1)
|
|
|
|
add_subdirectory(src)
|
|
|
|
find_library(NCURSES_LIB NAMES ncurses)
|
|
target_link_libraries(vis ncurses)
|