mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-20 12:52:06 +03:00
2b274e9460
- Replace functions that are provided by MinGW with a Win32-based implementation - Explicitly export needed symbols from ocsync.dll - Rename share.h to sharemanager.h since the name clashes with one of the Windows headers and get included from there - Remove the timestamp from the fallback csync stderr logging, it's not used since we always provide a log callback
335 lines
11 KiB
CMake
335 lines
11 KiB
CMake
project(gui)
|
|
set(CMAKE_AUTOMOC TRUE)
|
|
|
|
add_subdirectory(updater)
|
|
|
|
#TODO Move resources files
|
|
qt_add_resources(MIRALL_RC_SRC ../../client.qrc)
|
|
if ( IS_DIRECTORY ${OEM_THEME_DIR} )
|
|
qt_add_resources(MIRALL_RC_SRC ${OEM_THEME_DIR}/theme.qrc)
|
|
set(theme_dir ${OEM_THEME_DIR}/theme)
|
|
else()
|
|
qt_add_resources(MIRALL_RC_SRC ../../theme.qrc)
|
|
set(theme_dir ${CMAKE_SOURCE_DIR}/theme)
|
|
endif()
|
|
|
|
set(client_UI
|
|
accountsettings.ui
|
|
folderwizardsourcepage.ui
|
|
folderwizardtargetpage.ui
|
|
generalsettings.ui
|
|
ignorelisteditor.ui
|
|
networksettings.ui
|
|
protocolwidget.ui
|
|
activitywidget.ui
|
|
synclogdialog.ui
|
|
settingsdialog.ui
|
|
sharedialog.ui
|
|
sharelinkwidget.ui
|
|
shareusergroupwidget.ui
|
|
sharewidget.ui
|
|
sslerrordialog.ui
|
|
owncloudsetuppage.ui
|
|
addcertificatedialog.ui
|
|
proxyauthdialog.ui
|
|
notificationwidget.ui
|
|
wizard/owncloudadvancedsetuppage.ui
|
|
wizard/owncloudconnectionmethoddialog.ui
|
|
wizard/owncloudhttpcredspage.ui
|
|
wizard/owncloudsetupnocredspage.ui
|
|
wizard/owncloudwizardresultpage.ui
|
|
)
|
|
|
|
qt_wrap_ui(client_UI_SRCS ${client_UI})
|
|
|
|
set(client_SRCS
|
|
accountmanager.cpp
|
|
accountsettings.cpp
|
|
application.cpp
|
|
folder.cpp
|
|
folderman.cpp
|
|
folderstatusmodel.cpp
|
|
folderstatusdelegate.cpp
|
|
folderwatcher.cpp
|
|
folderwizard.cpp
|
|
generalsettings.cpp
|
|
ignorelisteditor.cpp
|
|
lockwatcher.cpp
|
|
logbrowser.cpp
|
|
networksettings.cpp
|
|
ocsjob.cpp
|
|
ocssharejob.cpp
|
|
ocsshareejob.cpp
|
|
openfilemanager.cpp
|
|
owncloudgui.cpp
|
|
owncloudsetupwizard.cpp
|
|
protocolwidget.cpp
|
|
activitydata.cpp
|
|
activitylistmodel.cpp
|
|
activitywidget.cpp
|
|
activityitemdelegate.cpp
|
|
selectivesyncdialog.cpp
|
|
settingsdialog.cpp
|
|
sharedialog.cpp
|
|
sharelinkwidget.cpp
|
|
sharemanager.cpp
|
|
shareusergroupwidget.cpp
|
|
sharee.cpp
|
|
socketapi.cpp
|
|
sslbutton.cpp
|
|
sslerrordialog.cpp
|
|
syncrunfilelog.cpp
|
|
systray.cpp
|
|
thumbnailjob.cpp
|
|
quotainfo.cpp
|
|
accountstate.cpp
|
|
addcertificatedialog.cpp
|
|
authenticationdialog.cpp
|
|
proxyauthhandler.cpp
|
|
proxyauthdialog.cpp
|
|
synclogdialog.cpp
|
|
tooltipupdater.cpp
|
|
notificationwidget.cpp
|
|
notificationconfirmjob.cpp
|
|
servernotificationhandler.cpp
|
|
creds/credentialsfactory.cpp
|
|
creds/httpcredentialsgui.cpp
|
|
wizard/postfixlineedit.cpp
|
|
wizard/abstractcredswizardpage.cpp
|
|
wizard/owncloudadvancedsetuppage.cpp
|
|
wizard/owncloudconnectionmethoddialog.cpp
|
|
wizard/owncloudhttpcredspage.cpp
|
|
wizard/owncloudsetuppage.cpp
|
|
wizard/owncloudwizardcommon.cpp
|
|
wizard/owncloudwizard.cpp
|
|
wizard/owncloudwizardresultpage.cpp
|
|
../3rdparty/qjson/json.cpp
|
|
)
|
|
|
|
IF(NOT NO_SHIBBOLETH)
|
|
list(APPEND client_SRCS
|
|
creds/shibbolethcredentials.cpp
|
|
creds/shibboleth/shibbolethwebview.cpp
|
|
creds/shibboleth/shibbolethuserjob.cpp
|
|
wizard/owncloudshibbolethcredspage.cpp
|
|
)
|
|
endif()
|
|
|
|
set(updater_SRCS
|
|
updater/ocupdater.cpp
|
|
updater/updateinfo.cpp
|
|
updater/updater.cpp
|
|
)
|
|
|
|
IF( APPLE )
|
|
list(APPEND client_SRCS cocoainitializer_mac.mm)
|
|
list(APPEND client_SRCS settingsdialogmac.cpp)
|
|
list(APPEND client_SRCS socketapisocket_mac.mm)
|
|
list(APPEND client_SRCS systray.mm)
|
|
list(APPEND client_SRCS clipboard.mm)
|
|
|
|
if(SPARKLE_FOUND)
|
|
# Define this, we need to check in updater.cpp
|
|
add_definitions( -DHAVE_SPARKLE )
|
|
list(APPEND updater_SRCS updater/sparkleupdater_mac.mm)
|
|
endif()
|
|
ENDIF()
|
|
|
|
IF( NOT WIN32 AND NOT APPLE )
|
|
set(client_SRCS ${client_SRCS} folderwatcher_linux.cpp)
|
|
ENDIF()
|
|
IF( WIN32 )
|
|
set(client_SRCS ${client_SRCS} folderwatcher_win.cpp)
|
|
ENDIF()
|
|
IF( APPLE )
|
|
list(APPEND client_SRCS folderwatcher_mac.cpp)
|
|
ENDIF()
|
|
|
|
set(3rdparty_SRC
|
|
../3rdparty/QProgressIndicator/QProgressIndicator.cpp
|
|
../3rdparty/qtlockedfile/qtlockedfile.cpp
|
|
../3rdparty/qtsingleapplication/qtlocalpeer.cpp
|
|
../3rdparty/qtsingleapplication/qtsingleapplication.cpp
|
|
../3rdparty/qtsingleapplication/qtsinglecoreapplication.cpp
|
|
../3rdparty/certificates/p12topem.cpp
|
|
)
|
|
|
|
if (APPLE)
|
|
list(APPEND 3rdparty_SRC
|
|
../3rdparty/qtmacgoodies/src/macpreferenceswindow.mm
|
|
../3rdparty/qtmacgoodies/src/macstandardicon.mm
|
|
../3rdparty/qtmacgoodies/src/macwindow.mm
|
|
)
|
|
endif()
|
|
|
|
if(NOT WIN32)
|
|
list(APPEND 3rdparty_SRC ../3rdparty/qtlockedfile/qtlockedfile_unix.cpp)
|
|
else()
|
|
list(APPEND 3rdparty_SRC ../3rdparty/qtlockedfile/qtlockedfile_win.cpp )
|
|
endif()
|
|
|
|
set(3rdparty_INC
|
|
${CMAKE_SOURCE_DIR}/src/3rdparty/qjson
|
|
${CMAKE_SOURCE_DIR}/src/3rdparty/QProgressIndicator
|
|
${CMAKE_SOURCE_DIR}/src/3rdparty/qtlockedfile
|
|
${CMAKE_SOURCE_DIR}/src/3rdparty/qtmacgoodies/src
|
|
${CMAKE_SOURCE_DIR}/src/3rdparty/qtsingleapplication
|
|
)
|
|
|
|
include_directories(${3rdparty_INC})
|
|
include_directories(${OPENSSL_INCLUDE_DIR})
|
|
|
|
# csync is required.
|
|
include_directories(${CMAKE_SOURCE_DIR}/csync/src
|
|
${CMAKE_BINARY_DIR}/csync
|
|
${CMAKE_BINARY_DIR}/csync/src
|
|
)
|
|
|
|
include_directories(../libsync ${CMAKE_CURRENT_BINARY_DIR}/../libsync)
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
|
|
qt_add_translation(client_I18N ${TRANSLATIONS})
|
|
|
|
IF( WIN32 )
|
|
configure_file(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/version.rc.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/version.rc
|
|
@ONLY)
|
|
set(client_version ${CMAKE_CURRENT_BINARY_DIR}/version.rc)
|
|
ENDIF()
|
|
|
|
set( final_src
|
|
${MIRALL_RC_SRC}
|
|
${client_SRCS}
|
|
${client_UI_SRCS}
|
|
${client_version}
|
|
${guiMoc}
|
|
${client_I18N}
|
|
${3rdparty_SRC}
|
|
${3rdparty_MOC}
|
|
)
|
|
|
|
if(QTKEYCHAIN_FOUND OR QT5KEYCHAIN_FOUND)
|
|
list(APPEND libsync_LINK_TARGETS ${QTKEYCHAIN_LIBRARY})
|
|
include_directories(${QTKEYCHAIN_INCLUDE_DIR})
|
|
endif()
|
|
|
|
# add executable icon on windows and osx
|
|
include( AddAppIconMacro )
|
|
set(ownCloud_old ${ownCloud})
|
|
|
|
# set an icon_app_name. For historical reasons we can not use the
|
|
# application_shortname for ownCloud but must rather set it manually.
|
|
if ( EXISTS ${OEM_THEME_DIR}/OEM.cmake )
|
|
set(ICON_APP_NAME ${APPLICATION_SHORTNAME})
|
|
else()
|
|
set(ICON_APP_NAME "owncloud")
|
|
endif()
|
|
|
|
kde4_add_app_icon( ownCloud "${theme_dir}/colored/${ICON_APP_NAME}-icon*.png")
|
|
list(APPEND final_src ${ownCloud})
|
|
set(ownCloud ${ownCloud_old})
|
|
|
|
if (WITH_DBUS)
|
|
set(ADDITIONAL_APP_MODULES DBus)
|
|
endif(WITH_DBUS)
|
|
if (NOT NO_SHIBBOLETH)
|
|
list(APPEND ADDITIONAL_APP_MODULES WebKitWidgets)
|
|
endif()
|
|
|
|
if(NOT BUILD_OWNCLOUD_OSX_BUNDLE)
|
|
|
|
if(NOT WIN32)
|
|
file( GLOB _icons "${theme_dir}/colored/${ICON_APP_NAME}-icon-*.png" )
|
|
foreach( _file ${_icons} )
|
|
string( REPLACE "${theme_dir}/colored/${ICON_APP_NAME}-icon-" "" _res ${_file} )
|
|
string( REPLACE ".png" "" _res ${_res} )
|
|
install( FILES ${_file} RENAME ${ICON_APP_NAME}.png DESTINATION ${DATADIR}/icons/hicolor/${_res}x${_res}/apps )
|
|
endforeach( _file )
|
|
endif(NOT WIN32)
|
|
|
|
install(FILES ${client_I18N} DESTINATION ${SHAREDIR}/${APPLICATION_EXECUTABLE}/i18n)
|
|
|
|
# we may not add MACOSX_BUNDLE here, if not building one
|
|
|
|
# add_executable( ${APPLICATION_EXECUTABLE} main.cpp ${final_src})
|
|
add_executable( ${APPLICATION_EXECUTABLE} WIN32 main.cpp ${final_src})
|
|
qt5_use_modules(${APPLICATION_EXECUTABLE} Widgets Network Xml Sql ${ADDITIONAL_APP_MODULES})
|
|
else()
|
|
# set(CMAKE_INSTALL_PREFIX ".") # Examples use /Applications. hurmpf.
|
|
set(MACOSX_BUNDLE_ICON_FILE "ownCloud.icns")
|
|
|
|
# we must add MACOSX_BUNDLE only if building a bundle
|
|
add_executable( ${APPLICATION_EXECUTABLE} WIN32 MACOSX_BUNDLE main.cpp ${final_src})
|
|
qt5_use_modules(${APPLICATION_EXECUTABLE} Widgets Network Xml Sql ${ADDITIONAL_APP_MODULES})
|
|
|
|
set (QM_DIR ${OWNCLOUD_OSX_BUNDLE}/Contents/Resources/Translations)
|
|
install(FILES ${client_I18N} DESTINATION ${QM_DIR})
|
|
get_target_property(_qmake Qt5::qmake LOCATION)
|
|
execute_process(COMMAND ${_qmake} -query QT_INSTALL_TRANSLATIONS
|
|
OUTPUT_VARIABLE QT_TRANSLATIONS_DIR
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
)
|
|
file(GLOB qt_I18N ${QT_TRANSLATIONS_DIR}/qt_??.qm ${QT_TRANSLATIONS_DIR}/qt_??_??.qm)
|
|
install(FILES ${qt_I18N} DESTINATION ${QM_DIR})
|
|
file(GLOB qtbase_I18N ${QT_TRANSLATIONS_DIR}/qtbase_??.qm ${QT_TRANSLATIONS_DIR}/qt_??_??.qm)
|
|
install(FILES ${qtbase_I18N} DESTINATION ${QM_DIR})
|
|
file(GLOB qtkeychain_I18N ${QT_TRANSLATIONS_DIR}/qtkeychain*.qm)
|
|
install(FILES ${qtkeychain_I18N} DESTINATION ${QM_DIR})
|
|
endif()
|
|
|
|
add_library(updater STATIC ${updater_SRCS} ${updaterMoc})
|
|
target_link_libraries(updater ${synclib_NAME})
|
|
qt5_use_modules(updater Widgets Network Xml)
|
|
|
|
set_target_properties( ${APPLICATION_EXECUTABLE} PROPERTIES
|
|
RUNTIME_OUTPUT_DIRECTORY ${BIN_OUTPUT_DIRECTORY}
|
|
)
|
|
# Only relevant for Linux? On OS X it by default properly checks in the bundle directory next to the exe
|
|
set_target_properties( ${APPLICATION_EXECUTABLE} PROPERTIES
|
|
INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${LIB_INSTALL_DIR}/${APPLICATION_EXECUTABLE}" )
|
|
|
|
target_link_libraries( ${APPLICATION_EXECUTABLE} ${QT_LIBRARIES} )
|
|
target_link_libraries( ${APPLICATION_EXECUTABLE} ${synclib_NAME} )
|
|
target_link_libraries( ${APPLICATION_EXECUTABLE} updater )
|
|
target_link_libraries( ${APPLICATION_EXECUTABLE} ${OS_SPECIFIC_LINK_LIBRARIES} )
|
|
|
|
if(WITH_CRASHREPORTER)
|
|
target_link_libraries( ${APPLICATION_EXECUTABLE} crashreporter-handler)
|
|
include_directories( "../3rdparty/libcrashreporter-qt/src/" )
|
|
|
|
if(UNIX AND NOT MAC)
|
|
find_package(Threads REQUIRED)
|
|
target_link_libraries( ${APPLICATION_EXECUTABLE} ${CMAKE_THREAD_LIBS_INIT})
|
|
endif()
|
|
endif()
|
|
|
|
install(TARGETS ${APPLICATION_EXECUTABLE}
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
BUNDLE DESTINATION "."
|
|
)
|
|
|
|
|
|
# FIXME: The following lines are dup in src/gui and src/cmd because it needs to be done after both are installed
|
|
#FIXME: find a nice solution to make the second if(BUILD_OWNCLOUD_OSX_BUNDLE) unnecessary
|
|
# currently it needs to be done because the code right above needs to be executed no matter
|
|
# if building a bundle or not and the install_qt4_executable needs to be called afterwards
|
|
if(BUILD_OWNCLOUD_OSX_BUNDLE AND NOT BUILD_LIBRARIES_ONLY)
|
|
get_target_property (QT_QMAKE_EXECUTABLE Qt5::qmake IMPORTED_LOCATION)
|
|
install(CODE "
|
|
message(STATUS \"Deploying (Qt) dependencies and fixing library paths...\")
|
|
execute_process(COMMAND \"${CMAKE_SOURCE_DIR}/admin/osx/macdeployqt.py\" ${CMAKE_INSTALL_PREFIX}/${OWNCLOUD_OSX_BUNDLE} ${QT_QMAKE_EXECUTABLE})
|
|
" COMPONENT RUNTIME)
|
|
endif()
|
|
|
|
if(NOT BUILD_OWNCLOUD_OSX_BUNDLE AND NOT WIN32)
|
|
configure_file(${CMAKE_SOURCE_DIR}/mirall.desktop.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/${APPLICATION_EXECUTABLE}.desktop)
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${APPLICATION_EXECUTABLE}.desktop DESTINATION ${DATADIR}/applications )
|
|
endif()
|
|
|