mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
766d9ae1ac
Update from commit 05ce8a23cdc12e825532dc6de06c267fb8d48b4f from
https://github.com/dragotin/QProgressIndicator
Which itself is forked from commit e5ba0fd09bfd43b067ee3646d70b294c7efcb558 from
upstream, with additional license header.
It was relicensed to MIT according to
14bb9d10e2
Relates to issues #5180 and #5184
64 lines
2.2 KiB
CMake
64 lines
2.2 KiB
CMake
include_directories(${CMAKE_BINARY_DIR}/csync ${CMAKE_BINARY_DIR}/csync/src ${CMAKE_BINARY_DIR}/src)
|
|
include_directories(${CMAKE_SOURCE_DIR}/csync/src/)
|
|
include_directories(${CMAKE_SOURCE_DIR}/csync/src/std ${CMAKE_SOURCE_DIR}/src)
|
|
include_directories(${CMAKE_SOURCE_DIR}/src/3rdparty/qtokenizer)
|
|
|
|
include(QtVersionAbstraction)
|
|
setup_qt()
|
|
|
|
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 )
|
|
if(HAVE_QT5 AND NOT BUILD_WITH_QT4)
|
|
owncloud_add_test(InotifyWatcher "${FolderWatcher_SRC}")
|
|
endif(HAVE_QT5 AND NOT BUILD_WITH_QT4)
|
|
endif(UNIX AND NOT APPLE)
|
|
|
|
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(ChecksumValidator "")
|
|
|
|
owncloud_add_test(ExcludedFiles "")
|
|
if(HAVE_QT5 AND NOT BUILD_WITH_QT4)
|
|
owncloud_add_test(SyncEngine "syncenginetestutils.h")
|
|
owncloud_add_test(SyncFileStatusTracker "syncenginetestutils.h")
|
|
endif(HAVE_QT5 AND NOT BUILD_WITH_QT4)
|
|
|
|
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/syncrunfilelog.cpp )
|
|
list(APPEND FolderMan_SRC ../src/gui/lockwatcher.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}")
|
|
|