From 85eace84f273beee39d8377884848bf38cd7fc2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Guzm=C3=A1n?= Date: Thu, 8 Dec 2022 00:05:27 -0600 Subject: [PATCH] [meson] add savepoint support --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index f28c5fb..bfc427a 100644 --- a/meson.build +++ b/meson.build @@ -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',