mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-16 00:00:02 +01:00

combine what was previously achieved by the separate binaries villas-fpga-xbar-select and villas-fpga-cat into a single new binary villas-fpga-ctl. Here we can select crossbar connections via command line parameters. To avoid regression there are shell scripts providing the old functionalities directly. Currently the villas-fpga-pipe functionality is not supported, because we still need to implement stdin input and routing that to the fpga. Signed-off-by: Niklas Eiling <niklas.eiling@eonerc.rwth-aachen.de>
32 lines
1.2 KiB
CMake
32 lines
1.2 KiB
CMake
## CMakeLists.txt
|
|
#
|
|
# @author Daniel Krebs <github@daniel-krebs.net>
|
|
# @copyright 2018-2022, Institute for Automation of Complex Power Systems, EONERC
|
|
# @license GNU General Public License (version 3)
|
|
#
|
|
# VILLASfpga
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
##############################################################################
|
|
|
|
add_executable(villas-fpga-ctrl villas-fpga-ctrl.cpp)
|
|
|
|
target_link_libraries(villas-fpga-ctrl PUBLIC
|
|
villas-fpga
|
|
)
|
|
|
|
add_executable(pcimem pcimem.c)
|
|
|
|
configure_file(villas-fpga-cat.sh villas-fpga-cat.sh COPYONLY)
|
|
configure_file(villas-fpga-xbar-select.sh villas-fpga-xbar-select.sh COPYONLY)
|