OSDN Git Service

ksystemlog: remove obsolete inter-dependancy workaround
authorIvailo Monev <xakepa10@gmail.com>
Tue, 27 Sep 2022 17:42:33 +0000 (20:42 +0300)
committerIvailo Monev <xakepa10@gmail.com>
Tue, 27 Sep 2022 17:42:33 +0000 (20:42 +0300)
ksystemlog build system was rewritten some time ago, what's interesting is
that ksystemlog_config is not valid target

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
ksystemlog/src/lib/CMakeLists.txt

index a24ccc7..3d8be1c 100644 (file)
@@ -38,24 +38,10 @@ set(ksystemlog_lib_sources
        levelPrintPage.cpp
 )
 
-# avoid putting the generated files in target specific
-# directory which is the case when automated
-set(CMAKE_AUTOUIC OFF)
-
-qt4_wrap_ui(ksystemlog_lib_sources
-    logViewSearchWidgetBase.ui
-)
-
 add_library(ksystemlog_lib STATIC ${ksystemlog_lib_sources})
 
-add_dependencies(
-       ksystemlog_lib 
-       ksystemlog_config
-)
-
 target_link_libraries(ksystemlog_lib
        ${KDE4_KDEUI_LIBS}
         ${KDE4_KIO_LIBS}
         ${KDE4_KFILE_LIBS}
-       ksystemlog_config
 )