mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-02 18:09:04 +03:00
f793de4629
Create a specific type that parses the permissions so we can store
it in a short rather than in a QByteArray
Note: in RemotePermissions::toString, we make sure the string is not
empty by adding a space, this was already existing before commit
e8f7adc7ca
where it was removed by mistake.
12 lines
534 B
CMake
12 lines
534 B
CMake
# Just list files to build as part of the csync dynamic lib.
|
|
# Essentially they could be in the same directory but are separate to
|
|
# help keep track of the different code licenses.
|
|
set(common_SOURCES
|
|
${CMAKE_CURRENT_LIST_DIR}/checksums.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/filesystembase.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/ownsql.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/syncjournaldb.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/syncjournalfilerecord.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/utility.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/remotepermissions.cpp
|
|
)
|