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

This edits the headers in every file so the copyright notice mentions RWTH Aachen University. We also update some copyright years and fix various comments so the header is the same across all of VILLASframework. * Harmonize comment and code-style Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com> * Harmonize comment and code-style Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com> --------- Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
45 lines
817 B
CMake
45 lines
817 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
|
|
|
|
cmake_minimum_required(VERSION 3.8)
|
|
|
|
project(villas-gpu
|
|
VERSION 1.0
|
|
DESCRIPTION "VILLASgpu"
|
|
LANGUAGES C CXX CUDA)
|
|
|
|
add_subdirectory(thirdparty/gdrcopy)
|
|
|
|
add_library(villas-gpu
|
|
SHARED
|
|
src/gpu.cpp
|
|
src/kernels.cu
|
|
)
|
|
|
|
target_compile_options(villas-gpu PRIVATE -g)
|
|
|
|
set_source_files_properties(src/gpu.cpp PROPERTIES
|
|
LANGUAGE CUDA
|
|
)
|
|
|
|
target_include_directories(villas-gpu
|
|
PRIVATE
|
|
/opt/cuda/include
|
|
)
|
|
|
|
target_link_libraries(villas-gpu
|
|
PUBLIC
|
|
villas-common
|
|
gdrapi
|
|
cuda
|
|
)
|
|
|
|
target_include_directories(villas-gpu
|
|
PUBLIC
|
|
${CMAKE_CURRENT_LIST_DIR}/include
|
|
PRIVATE
|
|
${CMAKE_CURRENT_LIST_DIR}
|
|
)
|