2006-03-16 21:16:35 +00:00
|
|
|
|
2006-09-18 08:44:41 +00:00
|
|
|
add_definitions(-D_LARGEFILE64_SOURCE )
|
|
|
|
|
2013-04-24 17:54:02 +00:00
|
|
|
if(Q_WS_X11)
|
|
|
|
find_package(X11 REQUIRED) # both subdirs require the X11 libs
|
|
|
|
endif(Q_WS_X11)
|
|
|
|
|
2007-06-20 13:04:46 +00:00
|
|
|
add_subdirectory( src )
|
2006-07-08 13:30:08 +00:00
|
|
|
add_subdirectory( client )
|
2006-05-12 00:08:30 +00:00
|
|
|
|
2006-06-24 16:33:35 +00:00
|
|
|
add_subdirectory( about )
|
|
|
|
add_subdirectory( pics )
|
|
|
|
add_subdirectory( sidebar )
|
2006-07-06 08:06:05 +00:00
|
|
|
add_subdirectory( preloader )
|
2006-06-24 16:33:35 +00:00
|
|
|
add_subdirectory( settings )
|
2006-02-28 08:01:15 +00:00
|
|
|
|
|
|
|
########### install files ###############
|
2010-10-19 12:44:48 +00:00
|
|
|
install( PROGRAMS
|
2008-04-06 18:26:46 +00:00
|
|
|
kfmclient.desktop kfmclient_dir.desktop kfmclient_html.desktop kfmclient_war.desktop
|
|
|
|
konqbrowser.desktop konquerorsu.desktop Home.desktop
|
|
|
|
DESTINATION ${XDG_APPS_INSTALL_DIR} )
|
2010-02-25 19:33:40 +00:00
|
|
|
|
|
|
|
# Make sure kfmclient can find konqueror.desktop even if people remove it from the K menu (#62242)
|
|
|
|
# This is why konqueror.desktop is installed into services.
|
2006-09-18 09:59:00 +00:00
|
|
|
install( FILES konqueror.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
2006-07-04 17:09:53 +00:00
|
|
|
|
2008-05-28 21:17:37 +00:00
|
|
|
install(FILES profile_webbrowsing.desktop DESTINATION ${DATA_INSTALL_DIR}/konqueror/profiles/ RENAME webbrowsing)
|
2006-07-04 17:09:53 +00:00
|
|
|
install(FILES profile_filemanagement.desktop DESTINATION ${DATA_INSTALL_DIR}/konqueror/profiles/ RENAME filemanagement)
|
2008-05-28 21:17:37 +00:00
|
|
|
install(FILES profile_tabbedbrowsing.desktop DESTINATION ${DATA_INSTALL_DIR}/konqueror/profiles/ RENAME tabbedbrowsing)
|
|
|
|
install(FILES profile_kde_devel.desktop DESTINATION ${DATA_INSTALL_DIR}/konqueror/profiles/ RENAME kde_devel)
|
|
|
|
|
2006-11-17 15:26:31 +00:00
|
|
|
if(NOT WIN32)
|
2008-05-28 21:17:37 +00:00
|
|
|
install(FILES profile_midnightcommander.desktop DESTINATION ${DATA_INSTALL_DIR}/konqueror/profiles/ RENAME midnightcommander)
|
2006-11-17 15:26:31 +00:00
|
|
|
endif(NOT WIN32)
|