Initial project files
This commit is contained in:
@@ -0,0 +1 @@
|
||||
add_subdirectory(core)
|
||||
@@ -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)
|
||||
@@ -0,0 +1 @@
|
||||
#include "core.hpp"
|
||||
@@ -0,0 +1,14 @@
|
||||
#ifndef CORE_HPP
|
||||
#define CORE_HPP
|
||||
|
||||
namespace core {
|
||||
|
||||
class Core {
|
||||
public:
|
||||
Core() = default;
|
||||
~Core() = default;
|
||||
};
|
||||
|
||||
} // namespace core
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user