Initial project files

This commit is contained in:
2026-06-14 07:36:11 -07:00
commit 36b368820e
15 changed files with 562 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
add_subdirectory(core)
+10
View File
@@ -0,0 +1,10 @@
set(target project_core)
add_library(${target}
core.cpp
core.hpp
)
target_compile_features(${target} PRIVATE cxx_std_23)
# target_link_libraries(${target} PRIVATE)
+1
View File
@@ -0,0 +1 @@
#include "core.hpp"
+14
View File
@@ -0,0 +1,14 @@
#ifndef CORE_HPP
#define CORE_HPP
namespace core {
class Core {
public:
Core() = default;
~Core() = default;
};
} // namespace core
#endif