From 355b8e8e8aea04bf8ba1d02fb733b26447e72fe9 Mon Sep 17 00:00:00 2001 From: paulhorn Date: Sat, 8 Aug 2026 20:20:18 +0200 Subject: [PATCH] chore: init --- .gitignore | 1 + CMakeLists.txt | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 CMakeLists.txt diff --git a/.gitignore b/.gitignore index ff9047e..ae6b19c 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /cmake-build-debug/ +/.idea/ \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..c5cd819 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 4.3) +project(tui_framework) + +set(CMAKE_CXX_STANDARD 14) + +include_directories(.) + +add_executable(tui_framework + main.cpp + main.h)