summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-02-18 00:33:20 +0100
committerGitHub <noreply@github.com>2020-02-18 00:33:20 +0100
commit7f380f4ffaa90c968b9bd1d362bbef5677de0497 (patch)
tree22417635c1bbb2bc9a57743ae21856ab1c5277ad
parentMerge pull request #3420 from namkazt/master2 (diff)
parentfix CMake build errors for certain SDL2 installations (diff)
downloadyuzu-7f380f4ffaa90c968b9bd1d362bbef5677de0497.tar
yuzu-7f380f4ffaa90c968b9bd1d362bbef5677de0497.tar.gz
yuzu-7f380f4ffaa90c968b9bd1d362bbef5677de0497.tar.bz2
yuzu-7f380f4ffaa90c968b9bd1d362bbef5677de0497.tar.lz
yuzu-7f380f4ffaa90c968b9bd1d362bbef5677de0497.tar.xz
yuzu-7f380f4ffaa90c968b9bd1d362bbef5677de0497.tar.zst
yuzu-7f380f4ffaa90c968b9bd1d362bbef5677de0497.zip
Diffstat (limited to '')
-rw-r--r--CMakeLists.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 44ed4196d..467d769a2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -157,8 +157,14 @@ if (ENABLE_SDL2)
target_include_directories(SDL2 INTERFACE "${SDL2_INCLUDE_DIR}")
else()
find_package(SDL2 REQUIRED)
- include_directories(${SDL2_INCLUDE_DIRS})
+ # Some installations don't set SDL2_LIBRARIES
+ if("${SDL2_LIBRARIES}" STREQUAL "")
+ message(WARNING "SDL2_LIBRARIES wasn't set, manually setting to SDL2::SDL2")
+ set(SDL2_LIBRARIES "SDL2::SDL2")
+ endif()
+
+ include_directories(${SDL2_INCLUDE_DIRS})
add_library(SDL2 INTERFACE)
target_link_libraries(SDL2 INTERFACE "${SDL2_LIBRARIES}")
endif()