mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
20 lines
486 B
CMake
20 lines
486 B
CMake
## CMakeLists.txt
|
|
#
|
|
# Author: Daniel Krebs <github@daniel-krebs.net>
|
|
# SPDX-FileCopyrightText: 2018 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
|
# 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(villas-fpga-pipe villas-fpga-pipe.cpp)
|
|
|
|
target_link_libraries(villas-fpga-pipe PUBLIC
|
|
villas-fpga
|
|
)
|
|
|
|
|
|
add_executable(pcimem pcimem.c)
|