generated from aselimov/cpp_project_template
11 lines
332 B
CMake
11 lines
332 B
CMake
include_directories(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR})
|
|
|
|
add_executable(${NAME}_cuda_tests
|
|
vec3_test.cu
|
|
)
|
|
|
|
target_link_libraries(${NAME}_cuda_tests gtest gtest_main)
|
|
target_link_libraries(${NAME}_cuda_tests ${NAME})
|
|
|
|
add_test(NAME Vec3CudaTests COMMAND ${CMAKE_BINARY_DIR}/tests/cuda_unit_tests/${NAME}_cuda_tests)
|