Implementing XML

This commit is contained in:
2024-07-08 16:56:54 +05:30
commit d8d3c80ad4
95 changed files with 9150 additions and 0 deletions

11
test/CMakeLists.txt Normal file
View File

@@ -0,0 +1,11 @@
set(TEST_EXECUTABLE
"test_main")
set(TEST_SRC
"test_main.c")
add_executable(${TEST_EXECUTABLE}
${TEST_SRC})
target_link_libraries(${TEST_EXECUTABLE} PUBLIC
${GITMAP_LIBRARY})

0
test/test_main.c Normal file
View File