Warning, /plasma/libksysguard/lsofui/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 
0002 ########### next target ###############
0003 
0004 set(lsofui_LIB_SRCS
0005    lsof.cpp
0006    lsof.h
0007 )
0008 
0009 ki18n_wrap_ui( lsofui_LIB_SRCS
0010    LsofSearchWidget.ui 
0011 )
0012 
0013 add_library(lsofui ${lsofui_LIB_SRCS})
0014 add_library(KSysGuard::LsofUi ALIAS lsofui)
0015 
0016 target_link_libraries(lsofui
0017     PUBLIC
0018         Qt::Widgets
0019     PRIVATE
0020         KF5::I18n
0021 )
0022 set_target_properties(lsofui PROPERTIES
0023     VERSION ${KSYSGUARD_VERSION}
0024     SOVERSION ${KSYSGUARD_SOVERSION}
0025     EXPORT_NAME LsofUi
0026 )
0027 install(TARGETS lsofui EXPORT libksysguardLibraryTargets ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
0028 
0029 ########### install files ###############
0030 
0031 install( FILES lsof.h DESTINATION ${KDE_INSTALL_INCLUDEDIR}/ksysguard COMPONENT Devel)
0032 
0033 if(BUILD_DESIGNERPLUGIN)
0034     add_subdirectory(designer)
0035 endif()