mirror of
https://github.com/savoirfairelinux/jami-client-qt.git
synced 2026-01-04 02:52:52 +08:00
misc: Clean up repository root.
This is the first in a series for cleaning up the top directory (root) of the repository and move various files/folders into nicely organized directory structures. GitLab: #749 Change-Id: If59b74fff981df242bc26e62a070bdb81d7baded
This commit is contained in:
21
extras/build/cmake/windows_daemon_deploy.cmake
Normal file
21
extras/build/cmake/windows_daemon_deploy.cmake
Normal file
@@ -0,0 +1,21 @@
|
||||
if (EXISTS ${TIME_STAMP_FILE})
|
||||
message("No need for daemon deployment")
|
||||
else()
|
||||
message("Daemon deploying ...")
|
||||
file(COPY "${DRING_PATH}/contrib/build/openssl/libcrypto-1_1-x64.dll"
|
||||
"${DRING_PATH}/contrib/build/openssl/libssl-1_1-x64.dll"
|
||||
"${PACKAGING_DIR}/wix/qt.conf"
|
||||
"${PROJECT_ROOT_DIR}/resources/images/jami.ico"
|
||||
"${PACKAGING_DIR}/wix/License.rtf"
|
||||
DESTINATION ${COPY_TO_PATH})
|
||||
# Cannot copy symbolic link using file COPY, create insread.
|
||||
file(GLOB_RECURSE RingTones "${DRING_PATH}/ringtones/*.ul"
|
||||
"${DRING_PATH}/ringtones/*.ogg"
|
||||
"${DRING_PATH}/ringtones/*.wav"
|
||||
"${DRING_PATH}/ringtones/*.opus")
|
||||
list(REMOVE_ITEM RingTones "${DRING_PATH}/ringtones/default.opus")
|
||||
file(COPY ${RingTones}
|
||||
DESTINATION ${COPY_TO_PATH}/ringtones)
|
||||
file(CREATE_LINK "${COPY_TO_PATH}/ringtones/01_AfroNigeria.opus"
|
||||
"${COPY_TO_PATH}/ringtones/default.opus")
|
||||
endif()
|
||||
Reference in New Issue
Block a user