blob: 85afc09bb33455ec9b0e7b1540f2f7fb7d6038a3 (
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
|
#
# Copyright 2010-2012,2015 Ettus Research LLC
# Copyright 2018 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0
#
UHD_INSTALL(FILES
algorithm.hpp
assert_has.hpp
assert_has.ipp
atomic.hpp
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
paths.hpp
pimpl.hpp
platform.hpp
safe_call.hpp
safe_main.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)
|