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',