diff options
| author | KunoiSayami <[email protected]> | 2023-03-14 17:18:26 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2023-03-14 17:18:26 +0800 |
| commit | 2a1d2fee4fcb7fd39454770ef5548ca4cf94dc76 (patch) | |
| tree | 03572717251c9d9dd5ea9f400027732e8cd449b8 /CMakeLists.txt | |
| parent | de790c5f00751d28744c52ae3f43d986422b11a2 (diff) | |
feat: Add normal skiplist implemention
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index bdca176..ac6bf41 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -139,4 +139,7 @@ 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 +set_target_properties(expt_0830 PROPERTIES LINKER_LANGUAGE CUDA) + +add_executable(normal_skiplist normal_skiplist.cpp) +target_link_libraries(normal_skiplist m stdc++)
\ No newline at end of file |
