blob: 57834079c9163a7c20835b962f2c6c80b1482435 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
add_subdirectory(include)
add_subdirectory(storage)
add_subdirectory(lookup)
add_executable(
test_pinyin
test_pinyin.cpp
)
target_link_libraries(
test_pinyin
libpinyin
)
add_executable(
test_phrase
test_phrase.cpp
)
target_link_libraries(
test_phrase
libpinyin
)
add_executable(
test_chewing
test_chewing.cpp
)
target_link_libraries(
test_chewing
libpinyin
)
|