Files
CMake/Tests/FindOpenACC/CTest/CMakeLists.txt
T
Robert Maynard f4fc0667ae FindOpenACC: Provide import targets and OpenACC_<lang>_OPTIONS variable
Previously the FindOpenACC module had issues where the contents of
OpenACC_<lang>_FLAGS could not be used with target_compile_options
when it contained multiple compiler flags.
2019-08-19 15:20:38 -04:00

14 lines
397 B
CMake

cmake_minimum_required(VERSION 3.14)
project(VerifyFindOpenAcc C)
set(CMAKE_C_STANDARD 11)
find_package(OpenACC REQUIRED)
add_executable(UsesOpenACC main.c)
target_link_libraries(UsesOpenACC PRIVATE OpenACC::OpenACC_C)
add_executable(UsesOpenACCVars main.c)
target_link_options(UsesOpenACCVars PRIVATE ${OpenACC_C_OPTIONS})
target_compile_options(UsesOpenACCVars PRIVATE ${OpenACC_C_OPTIONS})