diff options
| -rw-r--r-- | indra/cmake/Copy3rdPartyLibs.cmake | 15 | 
1 files changed, 12 insertions, 3 deletions
diff --git a/indra/cmake/Copy3rdPartyLibs.cmake b/indra/cmake/Copy3rdPartyLibs.cmake index 9238d232b8..eaf1e31fce 100644 --- a/indra/cmake/Copy3rdPartyLibs.cmake +++ b/indra/cmake/Copy3rdPartyLibs.cmake @@ -39,11 +39,20 @@ if(WINDOWS)          libeay32.dll          glod.dll          libhunspell.dll -        BugSplat64.dll -        BugSplatRc64.dll -        BsSndRpt64.exe          ) +    # Filenames are different for 32/64 bit BugSplat file and we don't +    # have any control over them so need to branch. +    if(ADDRESS_SIZE EQUAL 32) +        set(release_files ${release_files} BugSplat.dll) +        set(release_files ${release_files} BugSplatRc.dll) +        set(release_files ${release_files} BsSndRpt.exe) +    else(ADDRESS_SIZE EQUAL 32) +        set(release_files ${release_files} BugSplat64.dll) +        set(release_files ${release_files} BugSplatRc64.dll) +        set(release_files ${release_files} BsSndRpt64.exe) +    endif(ADDRESS_SIZE EQUAL 32) +      if (FMODEX)          if(ADDRESS_SIZE EQUAL 32)  | 
