diff options
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e05ef87..bdca176 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -131,4 +131,12 @@ add_executable(valid_sort valid_sort.cpp) target_link_libraries(valid_sort m stdc++) add_executable(expt_0821 expt_0821.cpp sortlib.h) -target_link_libraries(expt_0821 m stdc++)
\ No newline at end of file +target_link_libraries(expt_0821 m stdc++) + +add_executable(expt_0830 expt_0830.cu sortlib.cuh) +target_link_libraries(expt_0830 m stdc++) + +set_target_properties(expt_0830 PROPERTIES + CUDA_SEPARABLE_COMPILATION ON) +set_target_properties(expt_0830 PROPERTIES CUDA_ARCHITECTURES "75") +set_target_properties(expt_0830 PROPERTIES LINKER_LANGUAGE CUDA)
\ No newline at end of file |
