2018-06-25 17:03:09 +02:00
|
|
|
## CMakeLists.txt
|
|
|
|
#
|
2023-01-07 17:20:15 +01:00
|
|
|
# Author: Daniel Krebs <github@daniel-krebs.net>
|
2023-09-08 11:35:18 +02:00
|
|
|
# SPDX-FileCopyrightText: 2018 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
2023-01-07 17:20:15 +01:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2018-06-25 17:03:09 +02:00
|
|
|
|
2023-01-04 17:11:57 +01:00
|
|
|
add_executable(villas-fpga-ctrl villas-fpga-ctrl.cpp)
|
2017-11-21 22:30:21 +01:00
|
|
|
|
2023-01-04 17:11:57 +01:00
|
|
|
target_link_libraries(villas-fpga-ctrl PUBLIC
|
2024-02-29 21:40:05 +01:00
|
|
|
villas-fpga
|
2022-11-28 11:05:46 +01:00
|
|
|
)
|
2017-11-21 22:30:21 +01:00
|
|
|
|
2023-03-15 16:02:53 +01:00
|
|
|
add_executable(villas-fpga-pipe villas-fpga-pipe.cpp)
|
|
|
|
|
|
|
|
target_link_libraries(villas-fpga-pipe PUBLIC
|
2024-02-29 21:40:05 +01:00
|
|
|
villas-fpga
|
2023-03-15 16:02:53 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-08-21 13:40:38 +02:00
|
|
|
add_executable(pcimem pcimem.c)
|