From 1873f0f54219dd1b0788e53d9513e14964944e4e Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Wed, 26 Jun 2024 12:23:51 +0200 Subject: [PATCH] fixup! Move utility functions to core library --- tests/unit/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/CMakeLists.txt b/tests/unit/CMakeLists.txt index ff8bd06fbc..3eb8bce94b 100644 --- a/tests/unit/CMakeLists.txt +++ b/tests/unit/CMakeLists.txt @@ -5,7 +5,7 @@ add_executable(conv conv.cxx) target_link_libraries(conv rfb) add_executable(convertlf convertlf.cxx) -target_link_libraries(convertlf rfb) +target_link_libraries(convertlf core) add_executable(gesturehandler gesturehandler.cxx ../../vncviewer/GestureHandler.cxx) target_link_libraries(gesturehandler rfb) @@ -17,7 +17,7 @@ add_executable(pixelformat pixelformat.cxx) target_link_libraries(pixelformat rfb) add_executable(unicode unicode.cxx) -target_link_libraries(unicode rfb) +target_link_libraries(unicode core) add_executable(emulatemb emulatemb.cxx ../../vncviewer/EmulateMB.cxx) target_include_directories(emulatemb SYSTEM PUBLIC ${GETTEXT_INCLUDE_DIR})