diff options
| author | KunoiSayami <[email protected]> | 2023-05-22 19:42:05 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2023-05-22 19:42:05 +0800 |
| commit | 70af7c287739bc45089af9c36e6a41a2a317d61a (patch) | |
| tree | a832341cd85c2b552c98288068c5f2c4212dc57b /CMakeLists.txt | |
| parent | bcfe8c96899cfda8df98e540d7d9147b6d8db2a0 (diff) | |
feat: Add skiplist header
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index baf37e7..883dbc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -214,7 +214,6 @@ set_target_properties(expt_0516_2 PROPERTIES set_target_properties(expt_0516_2 PROPERTIES CUDA_ARCHITECTURES "75") set_target_properties(expt_0516_2 PROPERTIES LINKER_LANGUAGE CUDA) - add_executable(expt_0517 expt_0517.cu) target_link_libraries(expt_0517 m stdc++) @@ -223,4 +222,14 @@ set_target_properties(expt_0517 PROPERTIES set_target_properties(expt_0517 PROPERTIES CUDA_ARCHITECTURES "75") set_target_properties(expt_0517 PROPERTIES LINKER_LANGUAGE CUDA) +add_executable(expt_0520 expt_0520.cu skiplistcustom.cuh) +target_link_libraries(expt_0520 m stdc++) + +set_target_properties(expt_0520 PROPERTIES + CUDA_SEPARABLE_COMPILATION ON) +set_target_properties(expt_0520 PROPERTIES CUDA_ARCHITECTURES "75") +set_target_properties(expt_0520 PROPERTIES LINKER_LANGUAGE CUDA) + + + |
