Add dummy ui
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s

This commit is contained in:
2026-05-02 08:45:02 -07:00
parent 1beefa7d11
commit 9842c1579b
10 changed files with 193 additions and 19 deletions
+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