mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Place bundled SFML include paths before others
This allows to build with bundled SFML when system SFML (of another version) is installed
This commit is contained in:
parent
a09cf1d8f1
commit
99df57a35e
2 changed files with 2 additions and 2 deletions
|
@ -618,7 +618,7 @@ if(SFML_FOUND AND NOT SFML_VERSION_MAJOR) # SFML 1.x doesn't define SFML_VERSION
|
|||
else()
|
||||
message("Using static SFML ${SFML_FIND_VERSION_MAJOR}.${SFML_FIND_VERSION_MINOR} from Externals")
|
||||
add_subdirectory(Externals/SFML)
|
||||
include_directories(Externals/SFML/include)
|
||||
include_directories(BEFORE Externals/SFML/include)
|
||||
endif()
|
||||
|
||||
if(USE_UPNP)
|
||||
|
|
2
Externals/SFML/CMakeLists.txt
vendored
2
Externals/SFML/CMakeLists.txt
vendored
|
@ -1,4 +1,4 @@
|
|||
include_directories(include)
|
||||
include_directories(BEFORE include)
|
||||
|
||||
set(SRCS src/SFML/Network/Ftp.cpp
|
||||
src/SFML/Network/Http.cpp
|
||||
|
|
Loading…
Add table
Reference in a new issue