chore: playing around
This commit is contained in:
+3
-2
@@ -6,5 +6,6 @@ set(CMAKE_CXX_STANDARD 14)
|
|||||||
include_directories(.)
|
include_directories(.)
|
||||||
|
|
||||||
add_executable(tui_framework
|
add_executable(tui_framework
|
||||||
main.cpp
|
main.h
|
||||||
main.h)
|
src/main.cpp
|
||||||
|
include/tui/main.h)
|
||||||
|
|||||||
@@ -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
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
//
|
|
||||||
// Created by Paul Horn on 08.08.26.
|
|
||||||
//
|
|
||||||
|
|
||||||
#include "main.h"
|
|
||||||
|
|
||||||
namespace tui {
|
|
||||||
int main() {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
} // tui
|
|
||||||
@@ -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;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user