initial commit
This commit is contained in:
24
vala/meson.build
Normal file
24
vala/meson.build
Normal file
@@ -0,0 +1,24 @@
|
||||
project('postgresqldemo',
|
||||
['c', 'vala'],
|
||||
version: '1.0.0',
|
||||
license: 'BSD-3',
|
||||
default_options: [
|
||||
'b_ofast=if-release',
|
||||
'b_march_native=if-release',
|
||||
'b_ndebug=if-release'
|
||||
]
|
||||
)
|
||||
add_global_arguments('-DGETTEXT_PACKAGE="sernatur"', language: 'c')
|
||||
|
||||
glib_dep = dependency('glib-2.0')
|
||||
pq_dep = dependency('libpq', version: '>=8.0')
|
||||
|
||||
vala_sources = files('PostgresqlDemo.vala')
|
||||
|
||||
sources = vala_sources
|
||||
|
||||
exe = executable('postgresql_demo',
|
||||
sources,
|
||||
dependencies: [glib_dep, pq_dep],
|
||||
install: false)
|
||||
|
||||
Reference in New Issue
Block a user