Warning, /network/konqueror/sidebar/trees/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # !?!?!? make a lib, or clean this up...
0002 set(libkonq_sidebar_tree_SRCS 
0003         ${CMAKE_CURRENT_SOURCE_DIR}/konq_sidebartree.cpp
0004         ${CMAKE_CURRENT_SOURCE_DIR}/konq_sidebartreeitem.cpp
0005         ${CMAKE_CURRENT_SOURCE_DIR}/konq_sidebartreetoplevelitem.cpp
0006 )
0007 
0008 add_definitions (-DQT3_SUPPORT -DQT3_SUPPORT_WARNINGS)
0009 
0010 add_subdirectory( init )
0011 add_subdirectory( dirtree_module )
0012 add_subdirectory( bookmark_module )
0013 
0014 ########### next target ###############
0015 
0016 set(konqsidebar_tree_PART_SRCS konqsidebar_oldtreemodule.cpp ${libkonq_sidebar_tree_SRCS})
0017 
0018 add_library(konqsidebar_tree MODULE ${konqsidebar_tree_PART_SRCS})
0019 
0020 target_link_libraries(konqsidebar_tree ${KDE4_KDE3SUPPORT_LIBS} KF5::Parts  KF5::Konq konqsidebarplugin )
0021 
0022 install(TARGETS konqsidebar_tree DESTINATION ${KDE_INSTALL_PLUGINDIR} )
0023 
0024 ########### install desktop files ###############
0025 
0026 install( FILES konqsidebar_tree.desktop DESTINATION ${KDE_INSTALL_DATADIR}/konqsidebartng/plugins )
0027