diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lookup/CMakeLists.txt | 6 | ||||
-rw-r--r-- | tests/storage/CMakeLists.txt | 16 |
2 files changed, 16 insertions, 6 deletions
diff --git a/tests/lookup/CMakeLists.txt b/tests/lookup/CMakeLists.txt index ff6e7fc..3304c47 100644 --- a/tests/lookup/CMakeLists.txt +++ b/tests/lookup/CMakeLists.txt @@ -1,12 +1,12 @@ include_directories(..) add_executable( - test_simple_lookup - test_simple_lookup.cpp + test_pinyin_lookup + test_pinyin_lookup.cpp ) target_link_libraries( - test_simple_lookup + test_pinyin_lookup libpinyin ) diff --git a/tests/storage/CMakeLists.txt b/tests/storage/CMakeLists.txt index bff5108..ca03539 100644 --- a/tests/storage/CMakeLists.txt +++ b/tests/storage/CMakeLists.txt @@ -21,12 +21,22 @@ target_link_libraries( ) add_executable( - test_pinyin_index - test_pinyin_index.cpp + test_chewing_table + test_chewing_table.cpp ) target_link_libraries( - test_pinyin_index + test_chewing_table + libpinyin +) + +add_executable( + test_pinyin_table + test_pinyin_table.cpp +) + +target_link_libraries( + test_pinyin_table libpinyin ) |