aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/signalhandler/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/signalhandler/CMakeLists.txt')
-rw-r--r--vespalib/src/tests/signalhandler/CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/vespalib/src/tests/signalhandler/CMakeLists.txt b/vespalib/src/tests/signalhandler/CMakeLists.txt
index aa7a92d65b4..4f78eb2e82d 100644
--- a/vespalib/src/tests/signalhandler/CMakeLists.txt
+++ b/vespalib/src/tests/signalhandler/CMakeLists.txt
@@ -1,9 +1,17 @@
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+vespa_add_library(vespalib_signalhandler_test_my_shared_library TEST
+ SOURCES
+ my_shared_library.cpp
+ DEPENDS
+ vespalib
+)
vespa_add_executable(vespalib_signalhandler_test_app TEST
SOURCES
signalhandler_test.cpp
DEPENDS
vespalib
+ vespalib_signalhandler_test_my_shared_library
+ GTest::GTest
)
vespa_add_test(NAME vespalib_signalhandler_test_app NO_VALGRIND COMMAND vespalib_signalhandler_test_app)
vespa_add_executable(vespalib_victim_app