[Tablegen] Implement a basic table generator

This commit is contained in:
TennesseeTrash 2025-06-14 19:54:03 +02:00
parent 133c3d1a01
commit 35ce1d8e19
6 changed files with 353 additions and 0 deletions

View file

@ -0,0 +1,27 @@
include(${PROJECT_SOURCE_DIR}/CMake/pugixml.cmake)
add_library(Tablegen STATIC)
target_compile_features(Tablegen
PUBLIC
cxx_std_23
)
target_include_directories(Tablegen
PUBLIC
"Include"
)
target_link_libraries(Tablegen
PUBLIC
KVGToolsCommon
PRIVATE
pugixml
)
target_sources(Tablegen
PRIVATE
"Source/Tablegen.cpp"
"Source/Settings.cpp"
)