18
19
20
21
22
23
24
25
26
27
28
|
[objfwconfig, '--packages-dir'],
check: true).stdout().strip()
configure_file(
input: 'ObjMatrix.oc.in',
output: 'ObjMatrix.oc',
configuration: {
'libdir': get_option('prefix') / get_option('libdir'),
},
install: true,
install_dir: packages_dir)
|
>
|
18
19
20
21
22
23
24
25
26
27
28
29
|
[objfwconfig, '--packages-dir'],
check: true).stdout().strip()
configure_file(
input: 'ObjMatrix.oc.in',
output: 'ObjMatrix.oc',
configuration: {
'includedir': get_option('prefix') / get_option('includedir'),
'libdir': get_option('prefix') / get_option('libdir'),
},
install: true,
install_dir: packages_dir)
|