Skip to content

Commit

Permalink
Making meson build changes to reflect version
Browse files Browse the repository at this point in the history
  • Loading branch information
codeforall committed Mar 28, 2024
1 parent a5e6495 commit b25b197
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@

curldep = dependency('libcurl')
project('postgresql',
['c'],
version: 'Alpha 1.0',
)

pg_tde_version = meson.project_version()

conf_data = configuration_data()
conf_data.set_quoted('PACKAGE_NAME', 'pg_tde')
conf_data.set_quoted('PACKAGE_BUGREPORT', 'https://github.com/Percona-Lab/pg_tde/issues')
conf_data.set_quoted('PACKAGE_VERSION', pg_tde_version)
conf_data.set_quoted('PACKAGE_STRING', 'pg_tde @0@'.pg_tde_version)
conf_data.set_quoted('PACKAGE_TARNAME', 'pg_tde')

configure_file(input : 'config.h.in',
output : 'config.h',
configuration : conf_data)

pg_tde_sources = files(
'src/pg_tde.c',
Expand Down

0 comments on commit b25b197

Please sign in to comment.