aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/fuzzy/CMakeLists.txt
diff options
context:
space:
mode:
authorAlexey Chernyshev <aleksei@spotify.com>2022-03-22 16:47:14 +0100
committerAlexey Chernyshev <aleksei@spotify.com>2022-03-23 16:21:05 +0100
commit6bcdc1ac1c1c3ce8b30472926098df989b9f7019 (patch)
tree1bec251b1711a093a196c25be896c680282abd24 /vespalib/src/tests/fuzzy/CMakeLists.txt
parent32358e1689cded19a3c5d0213b0ef0c5329c1e33 (diff)
Addressing more comments
Diffstat (limited to 'vespalib/src/tests/fuzzy/CMakeLists.txt')
-rw-r--r--vespalib/src/tests/fuzzy/CMakeLists.txt16
1 files changed, 13 insertions, 3 deletions
diff --git a/vespalib/src/tests/fuzzy/CMakeLists.txt b/vespalib/src/tests/fuzzy/CMakeLists.txt
index f58602296a5..2a415a9ad62 100644
--- a/vespalib/src/tests/fuzzy/CMakeLists.txt
+++ b/vespalib/src/tests/fuzzy/CMakeLists.txt
@@ -1,8 +1,18 @@
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-vespa_add_executable(vespalib_fuzzy_test_app TEST
+vespa_add_executable(vespalib_fuzzy_matcher_test_app TEST
SOURCES
- fuzzy.cpp
+ fuzzy_matcher_test.cpp
DEPENDS
vespalib
+ GTest::GTest
)
-vespa_add_test(NAME vespalib_fuzzy_test_app COMMAND vespalib_fuzzy_test_app)
+vespa_add_test(NAME vespalib_fuzzy_matcher_test_app COMMAND vespalib_fuzzy_matcher_test_app)
+
+vespa_add_executable(vespalib_levenstein_distance_test_app TEST
+ SOURCES
+ levenstein_distance_test.cpp
+ DEPENDS
+ vespalib
+ GTest::GTest
+ )
+vespa_add_test(NAME vespalib_levenstein_distance_test_app COMMAND vespalib_levenstein_distance_test_app) \ No newline at end of file