diff options
Diffstat (limited to 'konq-plugins/fsview/CMakeLists.txt')
-rw-r--r-- | konq-plugins/fsview/CMakeLists.txt | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/konq-plugins/fsview/CMakeLists.txt b/konq-plugins/fsview/CMakeLists.txt new file mode 100644 index 0000000..2860015 --- /dev/null +++ b/konq-plugins/fsview/CMakeLists.txt @@ -0,0 +1,82 @@ +################################################# +# +# (C) 2013 Alexander Golubev +# fatzer2 (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### fsview (static) ########################### + +tde_add_library( fsview STATIC_PIC AUTOMOC + SOURCES treemap.cpp fsview.cpp scan.cpp inode.cpp +) + + +##### fsview (executable) ####################### + +tde_add_executable( fsview AUTOMOC + SOURCES main.cpp + LINK tdeio-shared fsview-static + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### scantest (test) ########################### +# FIXME: replace this after adding specific tde macro +if( WITH_TEST ) + tde_add_executable( scantest + SOURCES scantest.cpp + LINK tdeio-shared fsview-static ) + + set_property( SOURCE scantest.cpp APPEND + PROPERTY COMPILE_DEFINITIONS + FSVIEW_SCANTEST_DIRECTORY="${CMAKE_BINARY_DIR}" ) + + add_test( scantest ${CMAKE_CURRENT_BINARY_DIR}/scantest ) +endif( WITH_TEST ) + + +##### libfsviewpart (kpart) ##################### + +tde_add_kpart( libfsviewpart AUTOMOC + SOURCES fsview_part.cpp + LINK tdeio-shared konq-shared fsview-static + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### icons ##################################### + +tde_install_icons( fsview ) + + +##### other data ################################ + +install( FILES fsview_part.rc + DESTINATION ${DATA_INSTALL_DIR}/fsview +) + +install( FILES fsview_part.desktop + DESTINATION ${SERVICES_INSTALL_DIR} +) + +install( FILES fsview.desktop + DESTINATION ${APPS_INSTALL_DIR}/.hidden +) |