From a2d335f6adb70ac38af67c3ba93302169573a770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C5=A0toura=C4=8D?= <525032@mail.muni.cz> Date: Mon, 9 Oct 2023 13:44:59 +0200 Subject: [PATCH] created edit.hpp, cpp --- src/editor/CMakeLists.txt | 2 ++ src/editor/include/editor/edit.hpp | 6 ++++++ src/editor/src/edit.cpp | 1 + 3 files changed, 9 insertions(+) create mode 100644 src/editor/include/editor/edit.hpp create mode 100644 src/editor/src/edit.cpp diff --git a/src/editor/CMakeLists.txt b/src/editor/CMakeLists.txt index 33aaa1d..0646708 100644 --- a/src/editor/CMakeLists.txt +++ b/src/editor/CMakeLists.txt @@ -4,6 +4,8 @@ add_library(${THIS_TARGET_NAME} ./include/editor/scene.hpp ./src/scene.cpp + ./include/editor/edit.hpp + ./src/edit.cpp ) set_target_properties(${THIS_TARGET_NAME} PROPERTIES diff --git a/src/editor/include/editor/edit.hpp b/src/editor/include/editor/edit.hpp new file mode 100644 index 0000000..2f06d6a --- /dev/null +++ b/src/editor/include/editor/edit.hpp @@ -0,0 +1,6 @@ +#ifndef EDIT_INCLUDED +#define EDIT_INCLUDED + + + +#endif \ No newline at end of file diff --git a/src/editor/src/edit.cpp b/src/editor/src/edit.cpp new file mode 100644 index 0000000..968ab7e --- /dev/null +++ b/src/editor/src/edit.cpp @@ -0,0 +1 @@ +#include <editor/edit.hpp> \ No newline at end of file -- GitLab