mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-15 21:01:26 +00:00
- Moved nijesdcore to cores/ - Moved udev, net, dtoverlay, uio to sys_utils/ - Made all imports non-relative (except in __init__.py files) - Removed some unnecessary imports - Reordered some imports for Python conventions
18 lines
532 B
CMake
18 lines
532 B
CMake
#
|
|
# Copyright 2017 Ettus Research, National Instruments Company
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0
|
|
#
|
|
|
|
SET(USRP_MPM_FILES ${USRP_MPM_FILES})
|
|
SET(USRP_MPM_SYSUTILS_FILES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/__init__.py
|
|
${CMAKE_CURRENT_SOURCE_DIR}/dtoverlay.py
|
|
${CMAKE_CURRENT_SOURCE_DIR}/net.py
|
|
${CMAKE_CURRENT_SOURCE_DIR}/sysfs_gpio.py
|
|
${CMAKE_CURRENT_SOURCE_DIR}/udev.py
|
|
${CMAKE_CURRENT_SOURCE_DIR}/uio.py
|
|
)
|
|
LIST(APPEND USRP_MPM_FILES ${USRP_MPM_SYSUTILS_FILES})
|
|
SET(USRP_MPM_FILES ${USRP_MPM_FILES} PARENT_SCOPE)
|
|
|