2025-05-25 00:42:58 +02:00
|
|
|
include(${PROJECT_SOURCE_DIR}/CMake/pugixml.cmake)
|
|
|
|
|
|
|
|
add_library(Kanimaji STATIC)
|
|
|
|
|
|
|
|
target_compile_features(Kanimaji
|
|
|
|
PUBLIC
|
|
|
|
cxx_std_23
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(Kanimaji
|
2025-06-14 19:52:18 +02:00
|
|
|
PUBLIC
|
|
|
|
KVGToolsCommon
|
|
|
|
|
2025-05-25 00:42:58 +02:00
|
|
|
PRIVATE
|
|
|
|
pugixml
|
|
|
|
)
|
|
|
|
|
|
|
|
target_include_directories(Kanimaji
|
|
|
|
PUBLIC
|
|
|
|
"Include"
|
|
|
|
)
|
|
|
|
|
|
|
|
target_sources(Kanimaji
|
|
|
|
PRIVATE
|
2025-06-08 00:23:46 +02:00
|
|
|
"Source/Error.cpp"
|
2025-05-25 00:42:58 +02:00
|
|
|
"Source/Kanimaji.cpp"
|
2025-06-08 00:23:46 +02:00
|
|
|
"Source/Settings.cpp"
|
2025-06-06 18:57:42 +02:00
|
|
|
"Source/SVG.cpp"
|
2025-05-25 00:42:58 +02:00
|
|
|
)
|