summaryrefslogtreecommitdiffstats
path: root/fsa/src/alltest/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'fsa/src/alltest/CMakeLists.txt')
-rw-r--r--fsa/src/alltest/CMakeLists.txt70
1 files changed, 70 insertions, 0 deletions
diff --git a/fsa/src/alltest/CMakeLists.txt b/fsa/src/alltest/CMakeLists.txt
new file mode 100644
index 00000000000..d82ca400405
--- /dev/null
+++ b/fsa/src/alltest/CMakeLists.txt
@@ -0,0 +1,70 @@
+# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+vespa_add_executable(fsa_conceptnet_test_app
+ SOURCES
+ conceptnet_test.cpp
+ DEPENDS
+ fsamanagers
+ fsa
+)
+vespa_add_executable(fsa_detector_test_app
+ SOURCES
+ detector_test.cpp
+ DEPENDS
+ fsa
+)
+vespa_add_executable(fsa_fsa_test_app
+ SOURCES
+ fsa_test.cpp
+ DEPENDS
+ fsa
+)
+vespa_add_executable(fsa_fsa_create_test_app
+ SOURCES
+ fsa_create_test.cpp
+ DEPENDS
+ fsa
+)
+vespa_add_executable(fsa_fsa_perf_test_app
+ SOURCES
+ fsa_perftest.cpp
+ DEPENDS
+ fsa
+)
+vespa_add_executable(fsa_fsamanager_test_app
+ SOURCES
+ fsamanager_test.cpp
+ DEPENDS
+ fsamanagers
+ fsa
+)
+vespa_add_executable(fsa_lookup_test_app
+ SOURCES
+ lookup_test.cpp
+ DEPENDS
+ fsa
+)
+vespa_add_executable(fsa_ngram_test_app
+ SOURCES
+ ngram_test.cpp
+ DEPENDS
+ fsa
+)
+vespa_add_executable(fsa_segmenter_test_app
+ SOURCES
+ segmenter_test.cpp
+ DEPENDS
+ fsa
+)
+vespa_add_executable(fsa_vectorizer_test_app
+ SOURCES
+ vectorizer_test.cpp
+ DEPENDS
+ fsa
+)
+vespa_add_executable(fsa_vectorizer_perf_test_app
+ SOURCES
+ vectorizer_perftest.cpp
+ DEPENDS
+ fsa
+)
+vespa_add_test(NAME fsa_vectorizer_perf_test_app NO_VALGRIND COMMAND sh alltest.sh)