diff options
author | BYVoid <byvoid.kcp@gmail.com> | 2011-08-11 18:19:08 +0800 |
---|---|---|
committer | Peng Wu <alexepico@gmail.com> | 2011-08-12 10:39:03 +0800 |
commit | c47a095c10f6104fefb7d0406b7f4076ed47f16c (patch) | |
tree | a4c3261f5e406b5b6c60f4636f327db9d668bedc /utils/segment | |
parent | bd70f3fe77a2eda3b902c1514b07fbc821c9c1b4 (diff) | |
download | libpinyin-c47a095c10f6104fefb7d0406b7f4076ed47f16c.tar.gz libpinyin-c47a095c10f6104fefb7d0406b7f4076ed47f16c.tar.xz libpinyin-c47a095c10f6104fefb7d0406b7f4076ed47f16c.zip |
Add cmake scripts.
Diffstat (limited to 'utils/segment')
-rw-r--r-- | utils/segment/CMakeLists.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/utils/segment/CMakeLists.txt b/utils/segment/CMakeLists.txt new file mode 100644 index 0000000..82e4deb --- /dev/null +++ b/utils/segment/CMakeLists.txt @@ -0,0 +1,19 @@ +add_executable( + spseg + spseg.cpp +) + +target_link_libraries( + spseg + libpinyin +) + +add_executable( + ngseg + ngseg.cpp +) + +target_link_libraries( + ngseg + libpinyin +)
\ No newline at end of file |