diff options
author | Alexander Golubev <[email protected]> | 2013-10-15 16:26:13 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-10-15 16:26:13 +0200 |
commit | 1a22301f46db807500b77119ae0132b9a3f876c5 (patch) | |
tree | ebf70d60bf7341685d1c4f6eb945e8d36baab9b2 /konq-plugins/fsview | |
parent | 6d9f2a4901eda474254a5d62a8c3701c2067ea58 (diff) | |
download | tdeaddons-1a22301f46db807500b77119ae0132b9a3f876c5.tar.gz tdeaddons-1a22301f46db807500b77119ae0132b9a3f876c5.zip |
Initial cmake conversion
Diffstat (limited to 'konq-plugins/fsview')
-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 +) |