diff --git a/src/editor/CMakeLists.txt b/src/editor/CMakeLists.txt
index 33aaa1d1cba2e17f8b7fb3c66a4abace3050f405..06467087f374f985759e1d37f3eac4510872f5b3 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 0000000000000000000000000000000000000000..2f06d6a78dcd21dd88c6b1b6089c7f5f5646f5ea
--- /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 0000000000000000000000000000000000000000..968ab7e3338b3489903b44c8e42b292e530ed1a9
--- /dev/null
+++ b/src/editor/src/edit.cpp
@@ -0,0 +1 @@
+#include <editor/edit.hpp>
\ No newline at end of file