Skip to content

Commit

Permalink
CMakeLists.txt: update external lib source locations for flac and mpg123
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Nov 20, 2019
1 parent 00c0a78 commit 5679ca0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Expand Up @@ -30,8 +30,8 @@ if (ANDROID)

if (SUPPORT_FLAC)
add_definitions(-DMUSIC_FLAC)
add_subdirectory(external/flac-1.3.2)
include_directories(external/flac-1.3.2/include)
add_subdirectory(external/flac-1.3.3)
include_directories(external/flac-1.3.3/include)
target_link_libraries(SDL2_mixer PRIVATE FLAC)
endif()

Expand All @@ -45,7 +45,7 @@ if (ANDROID)

if (SUPPORT_MP3_MPG123)
add_definitions(-DMUSIC_MP3_MPG123)
add_subdirectory(external/mpg123-1.25.6)
add_subdirectory(external/mpg123-1.25.13)
target_link_libraries(SDL2_mixer PRIVATE mpg123)
endif()

Expand Down

0 comments on commit 5679ca0

Please sign in to comment.