diff options
| author | KunoiSayami <[email protected]> | 2021-11-05 16:34:40 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2021-11-05 16:34:40 +0800 |
| commit | 01769e17e318deab2b9ffc2fc49464e50f865c15 (patch) | |
| tree | 557b63d116989f151f058af912a21b47779d5d99 /CMakeLists.txt | |
| parent | 5bf90aa4e7e5b6127352a494782346caf69386b7 (diff) | |
chore: Refactor struct
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f1c2883..d004e93 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,9 @@ project(cleveldb CUDA) set(CMAKE_CUDA_STANDARD 14) -add_executable(cleveldb main.cu arena.cu arena.cuh) +add_executable(cleveldb main.cu headers/arena.cu headers/arena.cuh) + +add_executable(arena_test tests/arena.cu headers/arena.cu headers/arena.cuh) set_target_properties(cleveldb PROPERTIES CUDA_SEPARABLE_COMPILATION ON) |
