chore: playing around

This commit is contained in:
2026-08-08 20:27:30 +02:00
parent 5d75fdb09d
commit 837690b145
4 changed files with 22 additions and 13 deletions
+3 -2
View File
@@ -6,5 +6,6 @@ set(CMAKE_CXX_STANDARD 14)
include_directories(.)
add_executable(tui_framework
main.cpp
main.h)
main.h
src/main.cpp
include/tui/main.h)
+8
View File
@@ -0,0 +1,8 @@
//
// Created by Paul Horn on 08.08.26.
//
#ifndef TUI_FRAMEWORK_MAIN_H
#define TUI_FRAMEWORK_MAIN_H
#endif //TUI_FRAMEWORK_MAIN_H
-11
View File
@@ -1,11 +0,0 @@
//
// Created by Paul Horn on 08.08.26.
//
#include "main.h"
namespace tui {
int main() {
return 0;
}
} // tui
+11
View File
@@ -0,0 +1,11 @@
//
// Created by Paul Horn on 08.08.26.
//
#include "main.h"
#include <iostream>
int main() {
std::cout << "Hello world!" << std::endl;
}