[meson] add savepoint support

This commit is contained in:
Jonathan Guzmán 2022-12-08 00:05:27 -06:00
parent 2231923094
commit 85eace84f2
No known key found for this signature in database
GPG Key ID: C2956F1668BA042A

View File

@ -35,6 +35,7 @@ sqlitecpp_srcs = [
'src/Column.cpp',
'src/Database.cpp',
'src/Exception.cpp',
'src/Savepoint.cpp'
'src/Statement.cpp',
'src/Transaction.cpp',
]
@ -54,6 +55,7 @@ sqlitecpp_opts = []
sqlitecpp_test_srcs = [
'tests/Column_test.cpp',
'tests/Database_test.cpp',
'tests/Savepoint_test.cpp',
'tests/Statement_test.cpp',
'tests/Backup_test.cpp',
'tests/Transaction_test.cpp',
@ -166,6 +168,7 @@ install_headers(
'include/SQLiteCpp/Column.h',
'include/SQLiteCpp/Database.h',
'include/SQLiteCpp/Exception.h',
'include/SQLiteCpp/Savepoint.h',
'include/SQLiteCpp/Statement.h',
'include/SQLiteCpp/Transaction.h',
'include/SQLiteCpp/VariadicBind.h',