1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
qlibs_inc = include_directories('.')
qlibs_hdrs = files(
'alloc.h',
'base64.h',
'buffer.h',
'byte.h',
'case.h',
'cdbmake.h',
'cdbread.h',
'close.h',
'constmap.h',
'direntry.h',
'dnsresolv.h',
'env.h',
'error.h',
'exit.h',
'fd.h',
'fifo.h',
'fmt.h',
'genalloc.h',
'getln.h',
'getoptb.h',
'iopause.h',
'ip.h',
'lock.h',
'logmsg.h',
'ndelay.h',
'open.h',
'pathexec.h',
'prot.h',
'readclose.h',
'readwrite.h',
'rename.h',
'scan.h',
'seek.h',
'select.h',
'sig.h',
'socket_if.h',
'str.h',
'stralloc.h',
'tai.h',
'taia.h',
'timeout.h',
'timeoutconn.h',
'uint_t.h',
'wait.h',
)
qlibs_hdr_subdir = 'fehqlibs'
install_headers(qlibs_hdrs, subdir : qlibs_hdr_subdir)
|