From f6601ca936f124c1c2d248b58d229b12c89847e1 Mon Sep 17 00:00:00 2001 From: Rick Vogel Date: Thu, 11 Jan 2024 18:17:34 +0100 Subject: [PATCH] fix integration test --- examples/iotdashboard_smoketest/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/iotdashboard_smoketest/CMakeLists.txt b/examples/iotdashboard_smoketest/CMakeLists.txt index f9924b04..8f8a0c5f 100644 --- a/examples/iotdashboard_smoketest/CMakeLists.txt +++ b/examples/iotdashboard_smoketest/CMakeLists.txt @@ -22,7 +22,7 @@ endfunction() function(qsk_add_example target) cmake_parse_arguments(PARSE_ARGV 1 arg "MANUAL_FINALIZATION" "" "") add_executable(${target} WIN32 MACOSX_BUNDLE ${arg_UNPARSED_ARGUMENTS} ) - target_link_libraries(${target} PRIVATE QSkinny::QSkinny ) + target_link_libraries(${target} PRIVATE Qsk::QSkinny ) target_include_directories(${target} PRIVATE ${CMAKE_CURRENT_LIST_DIR}) endfunction()