blob: 767e56c449c366c89600dd643e022f6511caa355 (
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
41
42
43
44
45
|
#
# Copyright 2010-2012,2015 Ettus Research LLC
# Copyright 2018 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
UHD_INSTALL(FILES
algorithm.hpp
assert_has.hpp
assert_has.ipp
byteswap.hpp
byteswap.ipp
cast.hpp
csv.hpp
fp_compare_delta.ipp
fp_compare_epsilon.ipp
gain_group.hpp
log.hpp
log_add.hpp
math.hpp
msg_task.hpp
noncopyable.hpp
paths.hpp
pimpl.hpp
platform.hpp
safe_call.hpp
safe_main.hpp
scope_exit.hpp
static.hpp
tasks.hpp
thread_priority.hpp
thread.hpp
DESTINATION ${INCLUDE_DIR}/uhd/utils
COMPONENT headers
)
if(ENABLE_C_API)
UHD_INSTALL(FILES
thread_priority.h
log.h
DESTINATION ${INCLUDE_DIR}/uhd/utils
COMPONENT headers
)
endif(ENABLE_C_API)
|