blob: 86a8cc9f68d40e00129b31ae8ce9a7aa9a084892 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright 2011,2019 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
########################################################################
# Build executable
########################################################################
add_executable(tags_demo tags_demo.cc)
target_link_libraries(tags_demo gnuradio-uhd)
INSTALL(TARGETS
tags_demo
DESTINATION ${GR_PKG_UHD_EXAMPLES_DIR}
)
|