File: meson.build

package info (click to toggle)
isc-kea 3.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 62,036 kB
  • sloc: cpp: 594,791; sh: 26,896; lex: 8,540; yacc: 8,424; python: 1,065; xml: 149; makefile: 39
file content (22 lines) | stat: -rw-r--r-- 691 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
tools_conf_data = configuration_data()
tools_conf_data.set('prefix', PREFIX)
tools_conf_data.set('sysconfdir', '${prefix}/' + SYSCONFDIR)
tools_conf_data.set('localstatedir', '${prefix}/' + LOCALSTATEDIR)
tools_conf_data.set('exec_prefix', '${prefix}')
tools_conf_data.set('libdir', '${exec_prefix}/' + LIBDIR)
tools_conf_data.set('SEP', '+')
if BISON.found()
    tools_conf_data.set('YACC', BISON.full_path())
else
    tools_conf_data.set('YACC', 'bison')
endif
if AWK.found()
    tools_conf_data.set('AWK', AWK.full_path())
else
    tools_conf_data.set('AWK', 'awk')
endif
configure_file(
    input: 'extract_bnf.sh.in',
    output: 'extract_bnf.sh',
    configuration: tools_conf_data,
)