-
Notifications
You must be signed in to change notification settings - Fork 542
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d063b6
commit 914fd9c
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
add_executable(connection_test test_connection.cc) | ||
target_link_libraries(connection_test pslite) | ||
|
||
add_executable(simple_app_test test_simple_app.cc) | ||
target_link_libraries(simple_app_test pslite) | ||
|
||
add_executable(kv_app_test test_kv_app.cc) | ||
target_link_libraries(kv_app_test pslite) | ||
|
||
add_executable(kv_app_benchmark_test test_kv_app_benchmark.cc) | ||
target_link_libraries(kv_app_benchmark_test pslite) | ||
|
||
add_executable(kv_app_multi_workers_test test_kv_app_multi_workers.cc) | ||
target_link_libraries(kv_app_multi_workers_test pslite) |