Prepare the initial stubs

This commit is contained in:
TennesseeTrash 2025-05-25 00:42:58 +02:00
parent 969e0390fd
commit aea51d9e77
11 changed files with 104 additions and 0 deletions

1
Tools/CMakeLists.txt Normal file
View file

@ -0,0 +1 @@
add_subdirectory(KanimajiTool)

View file

@ -0,0 +1,16 @@
add_executable(KanimajiTool)
target_compile_features(KanimajiTool
PRIVATE
cxx_std_23
)
target_link_libraries(KanimajiTool
PRIVATE
Kanimaji
)
target_sources(KanimajiTool
PRIVATE
"Main.cpp"
)

View file

@ -0,0 +1,6 @@
#include <Kanimaji/Kanimaji.hpp>
int main()
{
}