Skip to content
Snippets Groups Projects
Commit 0ee774c3 authored by callum_linden's avatar callum_linden
Browse files

Missed a place in the Copy3rdPartyLibs.cmake file (thank Windows Find) that...

Missed a place in the Copy3rdPartyLibs.cmake file (thank Windows Find) that needs to differentiate between 32 and 64 bit Windows builds
parent 6cbb00fe
No related branches found
No related tags found
No related merge requests found
...@@ -39,11 +39,20 @@ if(WINDOWS) ...@@ -39,11 +39,20 @@ if(WINDOWS)
libeay32.dll libeay32.dll
glod.dll glod.dll
libhunspell.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 (FMODEX)
if(ADDRESS_SIZE EQUAL 32) if(ADDRESS_SIZE EQUAL 32)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment