aboutsummaryrefslogtreecommitdiffstats
path: root/searchcorespi/src/tests/plugin/CMakeLists.txt
blob: ef7f0ad316f2de0fe13fe122558b15cbbac83a72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
vespa_add_executable(searchcorespi_plugin_test_app TEST
    SOURCES
    plugin_test.cpp
    DEPENDS
    searchcorespi
)
vespa_add_test(
    NAME searchcorespi_plugin_test_app
    COMMAND searchcorespi_plugin_test_app
    ENVIRONMENT "LD_LIBRARY_PATH=."
)
vespa_add_executable(searchcorespi_factoryregistry_test_app TEST
    SOURCES
    factoryregistry_test.cpp
    DEPENDS
    searchcorespi
)
vespa_add_test(NAME searchcorespi_factoryregistry_test_app COMMAND searchcorespi_factoryregistry_test_app)
vespa_add_library(searchcorespi_tplugin
    SOURCES
    plugin.cpp
    DEPENDS
)
vespa_add_library(searchcorespi_illegal-plugin
    SOURCES
    empty.cpp
    DEPENDS
)