From 90a1f141ba0581dd236fd02cae8ffeaf913252b2 Mon Sep 17 00:00:00 2001 From: Thijs Wenker Date: Mon, 20 Oct 2014 22:28:02 +0200 Subject: [PATCH] removed duplicate hints entries --- cmake/modules/FindSDL2.cmake | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cmake/modules/FindSDL2.cmake b/cmake/modules/FindSDL2.cmake index b9d1e9ee01..d04cc5b48c 100644 --- a/cmake/modules/FindSDL2.cmake +++ b/cmake/modules/FindSDL2.cmake @@ -120,7 +120,7 @@ FIND_PATH(SDL2_INCLUDE_DIR SDL.h /opt/local # DarwinPorts /opt/csw # Blastwave /opt - Include HINTS ${SDL2_SEARCH_DIRS} + ${SDL2_SEARCH_DIRS} ) # Lookup the 64 bit libs on x64 @@ -136,7 +136,7 @@ IF(CMAKE_SIZEOF_VOID_P EQUAL 8) /opt/local /opt/csw /opt - Include HINTS ${SDL2_SEARCH_DIRS} + ${SDL2_SEARCH_DIRS} ) # On 32bit build find the 32bit libs ELSE(CMAKE_SIZEOF_VOID_P EQUAL 8) @@ -151,7 +151,7 @@ ELSE(CMAKE_SIZEOF_VOID_P EQUAL 8) /opt/local /opt/csw /opt - Include HINTS ${SDL2_SEARCH_DIRS} + ${SDL2_SEARCH_DIRS} ) ENDIF(CMAKE_SIZEOF_VOID_P EQUAL 8) @@ -175,7 +175,7 @@ IF(NOT SDL2_BUILDING_LIBRARY) /opt/local /opt/csw /opt - Include HINTS ${SDL2_SEARCH_DIRS} + ${SDL2_SEARCH_DIRS} ) # On 32bit build find the 32bit libs ELSE(CMAKE_SIZEOF_VOID_P EQUAL 8) @@ -191,7 +191,7 @@ IF(NOT SDL2_BUILDING_LIBRARY) /opt/local /opt/csw /opt - Include HINTS ${SDL2_SEARCH_DIRS} + ${SDL2_SEARCH_DIRS} ) ENDIF(CMAKE_SIZEOF_VOID_P EQUAL 8) ENDIF(NOT ${SDL2_INCLUDE_DIR} MATCHES ".framework")