mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
The project is now also REUSE compliant: https://reuse.software/ Previous copyright holders have provided their acknowledgement to transition to the new license in the following GitHub PR: https://github.com/VILLASframework/fpga/pull/66 Signed-off-by: Steffen Vogel <post@steffenvogel.de>
17 lines
574 B
CMake
17 lines
574 B
CMake
## CMakeLists.txt
|
|
#
|
|
# Author: Daniel Krebs <github@daniel-krebs.net>
|
|
# SPDX-FileCopyrightText: 2018-2022, Institute for Automation of Complex Power Systems, EONERC
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
##############################################################################
|
|
|
|
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)
|