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 generate_export_header(lsofui)
0017 
0018 target_link_libraries(lsofui
0019     PUBLIC
0020         Qt::Widgets
0021     PRIVATE
0022         KF6::I18n
0023 )
0024 set_target_properties(lsofui PROPERTIES
0025     VERSION ${KSYSGUARD_VERSION}
0026     SOVERSION ${KSYSGUARD_SOVERSION}
0027     EXPORT_NAME LsofUi
0028 )
0029 install(TARGETS lsofui EXPORT libksysguardLibraryTargets ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
0030 
0031 ########### install files ###############
0032 
0033 install( FILES lsof.h 
0034     ${CMAKE_CURRENT_BINARY_DIR}/lsofui_export.h
0035     DESTINATION ${KDE_INSTALL_INCLUDEDIR}/ksysguard
0036     COMPONENT Devel
0037 )
0038 
0039 if(BUILD_DESIGNERPLUGIN)
0040     add_subdirectory(designer)
0041 endif()