Prepare the initial stubs
This commit is contained in:
parent
969e0390fd
commit
aea51d9e77
11 changed files with 104 additions and 0 deletions
1
Tools/CMakeLists.txt
Normal file
1
Tools/CMakeLists.txt
Normal file
|
@ -0,0 +1 @@
|
|||
add_subdirectory(KanimajiTool)
|
16
Tools/KanimajiTool/CMakeLists.txt
Normal file
16
Tools/KanimajiTool/CMakeLists.txt
Normal 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"
|
||||
)
|
6
Tools/KanimajiTool/Main.cpp
Normal file
6
Tools/KanimajiTool/Main.cpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include <Kanimaji/Kanimaji.hpp>
|
||||
|
||||
int main()
|
||||
{
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue