initial commit
This commit is contained in:
20
c/meson.build
Normal file
20
c/meson.build
Normal file
@@ -0,0 +1,20 @@
|
||||
project('postgresqldemo',
|
||||
'c',
|
||||
version : '1.0.0',
|
||||
license : 'BSD-3',
|
||||
default_options : [ 'b_ofast=if-release', 'b_march_native=if-release', 'b_ndebug=if-release' ]
|
||||
)
|
||||
|
||||
#gtk_dep = dependency('gtk+-3.0', version : '>=3.0.0')
|
||||
# gmodule-export-2.0 is needed to connect the handlers
|
||||
#gmodule_dep = dependency('gmodule-export-2.0', version : '>=2.0')
|
||||
pg_dep = dependency('libpq', version : '>=8.0')
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
|
||||
sources = ['postgresql_demo.c']
|
||||
|
||||
exe = executable('postgresql_demo',
|
||||
sources,
|
||||
dependencies : [pg_dep],
|
||||
install : false)
|
Reference in New Issue
Block a user