blob: 1ab9a4c0bfb64763d03e394d26830b1e66053643 (
plain)
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
|
########################################################################
# install include files
########################################################################
install(FILES
chrono.hpp
block.hpp
block.i
element.hpp
element.i
gras.hpp
hier_block.hpp
hier_block.i
sbuffer.hpp
sbuffer.i
tags.hpp
tags.i
tag_iter.hpp
tag_iter.i
thread_pool.hpp
top_block.hpp
work_buffer.hpp
buffer_queue.hpp
weak_container.hpp
DESTINATION include/gras
COMPONENT ${GRAS_COMP_DEVEL}
)
install(FILES
detail/block.hpp
detail/chrono.hpp
detail/element.hpp
detail/sbuffer.hpp
detail/work_buffer.hpp
DESTINATION include/gras/detail
COMPONENT ${GRAS_COMP_DEVEL}
)
|