Skip to content

Commit

Permalink
Fixed|Audio|Linux: Path of the FMOD library
Browse files Browse the repository at this point in the history
The path is different in the new SDK.
  • Loading branch information
skyjake committed Jun 12, 2017
1 parent 3bf846a commit 871298b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/cmake/FindFMOD.cmake
Expand Up @@ -50,9 +50,9 @@ if (FMOD_FMOD_H AND NOT TARGET fmodex)
endif ()
elseif (UNIX)
if (ARCH_BITS EQUAL 64)
set (fmodLib ${fmodApi}/lib/libfmod64.so)
set (fmodLib ${fmodApi}/lib/x86_64/libfmod.so)
else ()
set (fmodLib ${fmodApi}/lib/libfmod.so)
set (fmodLib ${fmodApi}/lib/x86/libfmod.so)
endif ()
set (fmodInstLib ${fmodLib})
endif ()
Expand Down

0 comments on commit 871298b

Please sign in to comment.