mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
In python3.8, a change was made to the DLL search path, which requires using os.add_dll_directory to add a non-default path.
11 lines
373 B
CMake
11 lines
373 B
CMake
#
|
|
# Copyright 2024 Ettus Research, a National Instruments Company
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
|
|
########################################################################
|
|
set(BINARY_DIR "" CACHE STRING "")
|
|
set(SOURCE_DIR "" CACHE STRING "")
|
|
file(COPY "${SOURCE_DIR}/uhd/" DESTINATION "${BINARY_DIR}/uhd"
|
|
FILES_MATCHING PATTERN "*.py" PATTERN "*.mako")
|