diff options
Diffstat (limited to 'klm/search/CMakeLists.txt')
-rw-r--r-- | klm/search/CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/klm/search/CMakeLists.txt b/klm/search/CMakeLists.txt new file mode 100644 index 00000000..af352499 --- /dev/null +++ b/klm/search/CMakeLists.txt @@ -0,0 +1,22 @@ +INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/..) + +set(ksearch_STAT_SRCS + applied.hh + config.hh + context.hh + dedupe.hh + edge.hh + edge_generator.cc + edge_generator.hh + header.hh + nbest.cc + nbest.hh + rule.cc + rule.hh + types.hh + vertex.cc + vertex.hh + vertex_generator.hh) + +add_library(ksearch STATIC ${ksearch_STAT_SRCS}) + |