Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

provide sqlite2cpp as well #1786

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -3465,9 +3465,11 @@
"sqlpp11"
],
"program_names": [
"ddl2cpp"
"ddl2cpp",
"sqlite2cpp"
],
"versions": [
"0.64-2",
"0.64-1"
]
},
Expand Down
3 changes: 2 additions & 1 deletion subprojects/packagefiles/sqlpp11/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
project('sqlpp11', 'cpp', version: '0.64', license: 'BSD-2-Clause')

meson.override_find_program('ddl2cpp', files('scripts/ddl2cpp'))
meson.override_find_program('ddl2cpp', find_program('scripts/ddl2cpp'))
meson.override_find_program('sqlite2cpp', find_program('scripts/sqlite2cpp.py'))
Copy link
Author

@vpoinot vpoinot Nov 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change is based on this comment: mesonbuild/meson#13907 (comment)


connector_deps = []

Expand Down
2 changes: 1 addition & 1 deletion subprojects/sqlpp11.wrap
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ patch_directory = sqlpp11

[provide]
sqlpp11 = sqlpp11_dep
program_names = ddl2cpp
program_names = ddl2cpp, sqlite2cpp
Loading