blob: 1eea51bb4c4f37f77d5bfc16ff31f79b722588e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
cmake_minimum_required(VERSION 3.28)
project(vector_sum LANGUAGES CUDA CXX)
add_executable(vector_sum
main.cu)
# -Wpedantic causes warnings due to nvcc emitting non-standard (gcc-specific)
# host code.
# https://stackoverflow.com/questions/31000996/warning-when-compiling-cu-with-wpedantic-style-of-line-directive-is-a-gcc-ex
target_compile_options(vector_sum PRIVATE -Wall -Wextra -Wno-pedantic)
|