mirror of
https://github.com/hb9fxq/gr-digitalhf
synced 2024-12-22 15:10:00 +00:00
15 lines
342 B
CMake
15 lines
342 B
CMake
# Copyright 2018 Free Software Foundation, Inc.
|
|
#
|
|
# This file is part of GNU Radio
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
set(target_deps "@TARGET_DEPENDENCIES@")
|
|
foreach(dep IN LISTS target_deps)
|
|
find_dependency(${dep})
|
|
endforeach()
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@TARGET@Targets.cmake")
|