Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 19f7443

Browse files
committed
functional tests/CMake: add a missing library link
The functional tests rely on at least one libpfw_utility-provided feature: the BinaryCopy class. Therefore, it must explicitly link against it. Signed-off-by: David Wagner <[email protected]>
1 parent 5799312 commit 19f7443

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/functional-tests/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ if(BUILD_TESTING)
4242
find_package(LibXml2 REQUIRED)
4343

4444
target_link_libraries(parameterFunctionalTest
45-
PRIVATE parameter catch tmpfile LibXml2::libxml2 introspection-subsystem)
45+
PRIVATE parameter
46+
PRIVATE pfw_utility catch tmpfile LibXml2::libxml2 introspection-subsystem)
4647

4748
add_test(NAME parameterFunctionalTest
4849
COMMAND parameterFunctionalTest)

0 commit comments

Comments
 (0)