Move Buffer from kge.

This commit is contained in:
2023-10-09 10:24:40 -07:00
parent 36af6ac1f8
commit 1bc5bc0b10
4 changed files with 248 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ add_compile_options("-DDESKTOP_BUILD")
add_library(klib STATIC
Arena.cc
Buffer.cc
TLV.cc
Dictionary.cc)
@@ -25,3 +26,6 @@ target_link_libraries(tlv_test klib)
add_executable(dictionary_test dictionaryTest.cc)
target_link_libraries(dictionary_test klib)
add_executable(buffer_test bufferTest.cc)
target_link_libraries(buffer_test klib)