From 913e60a8cdad03fc85ea8a93f2fccf5884b7680a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=81=82=E6=88=90?= Date: Fri, 7 Aug 2020 18:04:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DCMakeList.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加link_libraries时一个库名字写错了 Log: 修复CMakeList.txt Change-Id: I6a129ca06e4e016d4673a7ed6c4cec50ce07564b Reviewed-on: http://gerrit.uniontech.com/c/dde-dock/+/1451 Reviewed-by: niecheng Reviewed-by: wangwei Reviewed-by: Tested-by: --- plugins/datetime/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/datetime/CMakeLists.txt b/plugins/datetime/CMakeLists.txt index 405744489..6bab1f8c9 100644 --- a/plugins/datetime/CMakeLists.txt +++ b/plugins/datetime/CMakeLists.txt @@ -26,7 +26,7 @@ target_link_libraries(${PLUGIN_NAME} PRIVATE ${DtkWidget_LIBRARIES} ${Qt5Widgets_LIBRARIES} ${Qt5Svg_LIBRARIES} - ${DFrameworkDBus_INCLUDE_DIRS} + ${DFrameworkDBus_LIBRARIES} ) install(TARGETS ${PLUGIN_NAME} LIBRARY DESTINATION lib/dde-dock/plugins)