Skip to content
Snippets Groups Projects
Commit 2977cbb7 authored by Aimee Linden's avatar Aimee Linden
Browse files

VWR-20770 (SNOW-649) FIXED Missing LL_TESTS condition around llplugin unit test

parent 855192a8
No related branches found
No related tags found
No related merge requests found
...@@ -616,6 +616,7 @@ Teardrops Fall ...@@ -616,6 +616,7 @@ Teardrops Fall
VWR-5366 VWR-5366
Techwolf Lupindo Techwolf Lupindo
SNOW-92 SNOW-92
SNOW-649
VWR-12385 VWR-12385
tenebrous pau tenebrous pau
VWR-247 VWR-247
......
...@@ -57,18 +57,21 @@ add_library (llplugin ${llplugin_SOURCE_FILES}) ...@@ -57,18 +57,21 @@ add_library (llplugin ${llplugin_SOURCE_FILES})
add_subdirectory(slplugin) add_subdirectory(slplugin)
# Add tests if (LL_TESTS)
include(LLAddBuildTest) # Add tests
# UNIT TESTS include(LLAddBuildTest)
SET(llplugin_TEST_SOURCE_FILES
llplugincookiestore.cpp
)
# llplugincookiestore has a dependency on curl, so we need to link the curl library into the test. # UNIT TESTS
set_source_files_properties( SET(llplugin_TEST_SOURCE_FILES
llplugincookiestore.cpp llplugincookiestore.cpp
PROPERTIES )
LL_TEST_ADDITIONAL_LIBRARIES "${CURL_LIBRARIES}"
)
LL_ADD_PROJECT_UNIT_TESTS(llplugin "${llplugin_TEST_SOURCE_FILES}") # llplugincookiestore has a dependency on curl, so we need to link the curl library into the test.
set_source_files_properties(
llplugincookiestore.cpp
PROPERTIES
LL_TEST_ADDITIONAL_LIBRARIES "${CURL_LIBRARIES}"
)
LL_ADD_PROJECT_UNIT_TESTS(llplugin "${llplugin_TEST_SOURCE_FILES}")
endif (LL_TESTS)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment