diff options
author | John Turner <jturner.usa@gmail.com> | 2025-07-31 00:11:48 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-07-31 00:11:48 -0400 |
commit | 13cb6fb4343e62e9683c46d99c22b439fc5f5c46 (patch) | |
tree | 144ed8809a179f1380ca7d10cf6976a259deb7da /meson.build | |
parent | 035bc69b7e1f7acd4c48548f1efd6009a59164ce (diff) | |
download | pam_xdg-13cb6fb4343e62e9683c46d99c22b439fc5f5c46.tar.gz |
rewrite and drop sqlitecpp dependency
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 2960abd..536739f 100644 --- a/meson.build +++ b/meson.build @@ -8,7 +8,6 @@ project( pam = dependency('pam') sqlite3 = dependency('sqlite3') -sqlitecpp = dependency('sqlitecpp') sources = files('src/pam_xdg.cpp') @@ -17,7 +16,7 @@ libdir = get_option('libdir') pam_xdg = shared_library( 'pam_xdg', sources, - dependencies: [pam, sqlite3, sqlitecpp], + dependencies: [pam, sqlite3], install: true, install_dir: libdir / 'security', name_prefix: '', |