From 5679ca0f418a8b6793bcdcd63458c9f77e9229a5 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Wed, 20 Nov 2019 17:05:20 +0300 Subject: [PATCH] CMakeLists.txt: update external lib source locations for flac and mpg123 --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8df07233..8a9aefa8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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() @@ -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()