Prepare the initial stubs
This commit is contained in:
parent
969e0390fd
commit
aea51d9e77
11 changed files with 104 additions and 0 deletions
25
Libraries/Kanimaji/CMakeLists.txt
Normal file
25
Libraries/Kanimaji/CMakeLists.txt
Normal file
|
@ -0,0 +1,25 @@
|
|||
include(${PROJECT_SOURCE_DIR}/CMake/ctre.cmake)
|
||||
include(${PROJECT_SOURCE_DIR}/CMake/pugixml.cmake)
|
||||
|
||||
add_library(Kanimaji STATIC)
|
||||
|
||||
target_compile_features(Kanimaji
|
||||
PUBLIC
|
||||
cxx_std_23
|
||||
)
|
||||
|
||||
target_link_libraries(Kanimaji
|
||||
PRIVATE
|
||||
ctre
|
||||
pugixml
|
||||
)
|
||||
|
||||
target_include_directories(Kanimaji
|
||||
PUBLIC
|
||||
"Include"
|
||||
)
|
||||
|
||||
target_sources(Kanimaji
|
||||
PRIVATE
|
||||
"Source/Kanimaji.cpp"
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue