Skip to content

Commit

Permalink
Fix FMOD on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
cullvox committed Jun 20, 2024
1 parent 1dc919b commit b130b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ThirdParty/fmod/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
add_library(FMOD SHARED IMPORTED GLOBAL)

if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
if (CMAKE_CXX_COMPILER_ID STREQUAL "GCC")
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
set(FMOD_IMPORTED_LOCATION "${CMAKE_CURRENT_LIST_DIR}/api/core/lib/linux/x86_64/libfmod.so.13.21")
set(FMOD_IMPORTED_LOCATION_DEBUG "${CMAKE_CURRENT_LIST_DIR}/api/core/lib/linux/x86_64/libfmodL.so.13.21")
else()
Expand Down

0 comments on commit b130b7c

Please sign in to comment.