summaryrefslogtreecommitdiffstats
path: root/tests/storage/CMakeLists.txt
blob: 4c960468746be5e852bfb98dee00de04a1e17208 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
add_executable(
    test_parser
    test_parser.cpp
)

target_link_libraries(
    test_parser
    libpinyin
)

add_executable(
    test_pinyin_index
    test_pinyin_index.cpp
)

target_link_libraries(
    test_pinyin_index
    libpinyin
)

add_executable(
    test_phrase_index
    test_phrase_index.cpp
)

target_link_libraries(
    test_phrase_index
    libpinyin
)

add_executable(
    test_phrase_table
    test_phrase_table.cpp
)

target_link_libraries(
    test_phrase_table
    libpinyin
)

add_executable(
    test_ngram
    test_ngram.cpp
)

target_link_libraries(
    test_ngram
    libpinyin
)

add_executable(
    test_flexible_ngram
    test_flexible_ngram.cpp
)

target_link_libraries(
    test_flexible_ngram
    libpinyin
)