CMakeLists.txt 349 Bytes
cmake_minimum_required(VERSION 3.18)
project(plasma-processing LANGUAGES CUDA CXX)

# Link this 'library' to set the c++ standard / compile-time options requested
add_library(project_options INTERFACE)
target_compile_features(project_options INTERFACE cxx_std_17)

set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_SOURCE_DIR}/bin)

add_subdirectory(src)