1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-05 08:05:25 +02:00
jami-client-qt/cmake/windows_daemon_deploy.cmake
Aline Gondim Santos bb3abad327 misc: use static ffmpeg
Change-Id: I3880d4b45de98377f4a2779723522a7ed1de8527
2022-08-02 16:23:35 -04:00

21 lines
1 KiB
CMake

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"
"${PROJECT_ROOT_DIR}/qt.conf"
"${PROJECT_ROOT_DIR}/resources/images/jami.ico"
"${PROJECT_ROOT_DIR}/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()