27
28
29
30
31
32
33
34
35
36
37
38
39
|
[objfwconfig, '--packages-dir'],
check: true).stdout().strip()
configure_file(
input: 'ObjPgSQL.oc.in',
output: 'ObjPgSQL.oc',
configuration: {
'libdir': get_option('prefix') / get_option('libdir'),
'LIBPQ_CPPFLAGS': libpq_cflags,
'LIBPQ_LIBS': libpq_libs,
},
install: true,
install_dir: packages_dir)
|
>
|
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
[objfwconfig, '--packages-dir'],
check: true).stdout().strip()
configure_file(
input: 'ObjPgSQL.oc.in',
output: 'ObjPgSQL.oc',
configuration: {
'includedir': get_option('prefix') / get_option('includedir'),
'libdir': get_option('prefix') / get_option('libdir'),
'LIBPQ_CPPFLAGS': libpq_cflags,
'LIBPQ_LIBS': libpq_libs,
},
install: true,
install_dir: packages_dir)
|