blob: e4b4accb192caeee45b2d126ed7c0f54f5a0a10d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
cmake_minimum_required(VERSION 3.28)
project(cuda_hello LANGUAGES CUDA CXX)
add_executable(cuda_hello
hello.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(cuda_hello PRIVATE -Wall -Wextra -Wno-pedantic)
|