mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 21:46:03 +03:00
72b2c52e15
Conflicts: src/gui/application.cpp src/gui/owncloudsetupwizard.cpp
64 lines
2.5 KiB
CMake
64 lines
2.5 KiB
CMake
include_directories(${CMAKE_BINARY_DIR}/csync ${CMAKE_BINARY_DIR}/csync/src ${CMAKE_BINARY_DIR}/src)
|
|
include_directories(${CMAKE_SOURCE_DIR}/csync/src/ ${CMAKE_SOURCE_DIR}/csync/src/httpbf/src)
|
|
include_directories(${CMAKE_SOURCE_DIR}/csync/src/std ${CMAKE_SOURCE_DIR}/src)
|
|
|
|
include(owncloud_add_test.cmake)
|
|
|
|
owncloud_add_test(OwncloudPropagator "")
|
|
owncloud_add_test(Utility "")
|
|
owncloud_add_test(Updater "")
|
|
|
|
SET(FolderWatcher_SRC ../src/gui/folderwatcher.cpp)
|
|
|
|
IF( NOT WIN32 AND NOT APPLE )
|
|
list(APPEND FolderWatcher_SRC ../src/gui/folderwatcher_linux.cpp)
|
|
ENDIF()
|
|
IF( WIN32 )
|
|
list(APPEND FolderWatcher_SRC ../src/gui/folderwatcher_win.cpp)
|
|
ENDIF()
|
|
IF( APPLE )
|
|
list(APPEND FolderWatcher_SRC ../src/gui/folderwatcher_mac.cpp)
|
|
list(APPEND FolderWatcher_SRC ../src/gui/socketapisocket_mac.mm)
|
|
ENDIF()
|
|
|
|
owncloud_add_test(FolderWatcher "${FolderWatcher_SRC}")
|
|
if( UNIX AND NOT APPLE )
|
|
owncloud_add_test(InotifyWatcher "${FolderWatcher_SRC}")
|
|
endif(UNIX AND NOT APPLE)
|
|
|
|
configure_file(oc_bin.h.in oc_bin.h)
|
|
|
|
owncloud_add_test(CSyncSqlite "")
|
|
owncloud_add_test(NetrcParser ../src/cmd/netrcparser.cpp)
|
|
owncloud_add_test(OwnSql "")
|
|
owncloud_add_test(SyncJournalDB "")
|
|
owncloud_add_test(SyncFileItem "")
|
|
owncloud_add_test(ConcatUrl "")
|
|
|
|
owncloud_add_test(XmlParse "")
|
|
owncloud_add_test(FileSystem "")
|
|
owncloud_add_test(TransChecksumValidator "")
|
|
|
|
|
|
SET(FolderMan_SRC ../src/gui/folderman.cpp)
|
|
list(APPEND FolderMan_SRC ../src/gui/folder.cpp )
|
|
list(APPEND FolderMan_SRC ../src/gui/socketapi.cpp )
|
|
list(APPEND FolderMan_SRC ../src/gui/accountstate.cpp )
|
|
#list(APPEND FolderMan_SRC ../src/gui/accountmanager.cpp )
|
|
#list(APPEND FolderMan_SRC ../src/gui/proxyauthhandler.cpp )
|
|
#list(APPEND FolderMan_SRC ../src/gui/proxyauthdialog.cpp )
|
|
#list(APPEND FolderMan_SRC ../src/gui/creds/shibbolethcredentials.cpp )
|
|
#list(APPEND FolderMan_SRC ../src/gui/creds/credentialsfactory.cpp )
|
|
#list(APPEND FolderMan_SRC ../src/gui/creds/shibboleth/shibbolethuserjob.cpp )
|
|
#list(APPEND FolderMan_SRC ../src/gui/creds/shibboleth/shibbolethrefresher.cpp )
|
|
#list(APPEND FolderMan_SRC ../src/gui/creds/shibboleth/shibbolethwebview.cpp )
|
|
#list(APPEND FolderMan_SRC ../src/gui/creds/httpcredentialsgui.cpp )
|
|
#list(APPEND FolderMan_SRC ../src/gui/sslerrordialog.cpp )
|
|
list(APPEND FolderMan_SRC ../src/gui/syncrunfilelog.cpp )
|
|
list(APPEND FolderMan_SRC ${FolderWatcher_SRC})
|
|
list(APPEND FolderMan_SRC stub.cpp )
|
|
#include_directories(${QTKEYCHAIN_INCLUDE_DIR})
|
|
#include_directories(${CMAKE_BINARY_DIR}/src/gui)
|
|
#include_directories(${CMAKE_SOURCE_DIR}/src/3rdparty/qjson)
|
|
owncloud_add_test(FolderMan "${FolderMan_SRC}")
|
|
|