Skip to content

Commit

Permalink
Fix linux
Browse files Browse the repository at this point in the history
  • Loading branch information
louist103 committed Oct 31, 2024
1 parent bd4e38a commit 160768c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,15 @@ target_link_libraries(future PRIVATE OpenGL::GL)
find_library(OGG_LIB ogg)
target_link_libraries(future PRIVATE "${OGG_LIB}")

find_library(VORBIS_LIB vorbis)
target_link_libraries(future PRIVATE "${VORBIS_LIB}")

find_library(VORBISFILE_LIB vorbisfile)
target_link_libraries(future PRIVATE "${VORBISFILE_LIB}")

find_library(VORBISENC_LIB vorbisenc)
target_link_libraries(future PRIVATE "${VORBISENC_LIB}")

elseif(CMAKE_SYSTEM_NAME STREQUAL "Windows")


Expand Down

0 comments on commit 160768c

Please sign in to comment.