Import SQLite3 wrapper implementation from old repo

This commit is contained in:
TennesseeTrash 2025-06-09 01:41:27 +02:00
parent f9c6e9e7cb
commit 405b68b824
5 changed files with 826 additions and 0 deletions

View file

@ -0,0 +1,20 @@
include(${PROJECT_SOURCE_DIR}/CMake/sqlite3.cmake)
add_executable(TestSQLite)
target_compile_features(TestSQLite
PRIVATE
cxx_std_20
)
target_link_libraries(TestSQLite
PRIVATE
Garbage
sqlite3
Catch2::Catch2WithMain
)
target_sources(TestSQLite
PRIVATE
Main.cpp
)