diff options
| author | Nicky <nicky.dasmijn@gmail.com> | 2022-04-16 17:12:24 +0200 | 
|---|---|---|
| committer | Nicky <nicky.dasmijn@gmail.com> | 2022-04-16 17:12:24 +0200 | 
| commit | c0c5ac0e3984ffe1911455cd22554fdd0cb05f68 (patch) | |
| tree | 0acb826872c455c33b1171a841405790f8119b33 | |
| parent | e45a6a0f689d12659ccb1d323e0fa6d791c2a74e (diff) | |
Only try copy voice files from slvoice_src_dir if that variable is set (seems to be the case for Windows)
| -rw-r--r-- | indra/cmake/Copy3rdPartyLibs.cmake | 15 | 
1 files changed, 9 insertions, 6 deletions
| diff --git a/indra/cmake/Copy3rdPartyLibs.cmake b/indra/cmake/Copy3rdPartyLibs.cmake index d5b8e6c712..7d187b5eef 100644 --- a/indra/cmake/Copy3rdPartyLibs.cmake +++ b/indra/cmake/Copy3rdPartyLibs.cmake @@ -260,13 +260,16 @@ endif(WINDOWS)  # Curiously, slvoice_files are only copied to SHARED_LIB_STAGING_DIR_RELEASE.  # It's unclear whether this is oversight or intentional, but anyway leave the  # single copy_if_different command rather than using to_staging_dirs. -copy_if_different( -    ${slvoice_src_dir} -    "${SHARED_LIB_STAGING_DIR_RELEASE}" -    out_targets -    ${slvoice_files} + +if( slvoice_src_dir ) +    copy_if_different( +            ${slvoice_src_dir} +            "${SHARED_LIB_STAGING_DIR_RELEASE}" +            out_targets +            ${slvoice_files}      ) -list(APPEND third_party_targets ${out_targets}) +    list(APPEND third_party_targets ${out_targets}) +endif()  to_staging_dirs(      ${vivox_lib_dir} | 
