blob: 280a2556d6088124b03058e684c58784d85f60e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
add_executable(
spseg
spseg.cpp
)
target_link_libraries(
spseg
libzhuyin
)
add_executable(
ngseg
ngseg.cpp
)
target_link_libraries(
ngseg
libzhuyin
)
|