From c47a095c10f6104fefb7d0406b7f4076ed47f16c Mon Sep 17 00:00:00 2001 From: BYVoid Date: Thu, 11 Aug 2011 18:19:08 +0800 Subject: Add cmake scripts. --- tests/lookup/CMakeLists.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tests/lookup/CMakeLists.txt (limited to 'tests/lookup/CMakeLists.txt') diff --git a/tests/lookup/CMakeLists.txt b/tests/lookup/CMakeLists.txt new file mode 100644 index 0000000..9bd2608 --- /dev/null +++ b/tests/lookup/CMakeLists.txt @@ -0,0 +1,19 @@ +add_executable( + test_simple_lookup + test_simple_lookup.cpp +) + +target_link_libraries( + test_simple_lookup + libpinyin +) + +add_executable( + test_phrase_lookup + test_phrase_lookup.cpp +) + +target_link_libraries( + test_phrase_lookup + libpinyin +) \ No newline at end of file -- cgit