mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-21 08:48:42 +00:00
SFML on linux/osx now compiles from external (static)
removed HAVE_SFML ifdefs git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5101 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3dc3c1c3b3
commit
7de17cb9c2
9 changed files with 36 additions and 35 deletions
22
Externals/SFML/src/SConscript
vendored
Normal file
22
Externals/SFML/src/SConscript
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
# -*- python -*-
|
||||
|
||||
Import('env')
|
||||
import sys
|
||||
|
||||
files = [
|
||||
"SFML/Network/Ftp.cpp",
|
||||
"SFML/Network/Http.cpp",
|
||||
"SFML/Network/IPAddress.cpp",
|
||||
"SFML/Network/Packet.cpp",
|
||||
"SFML/Network/SelectorBase.cpp",
|
||||
"SFML/Network/SocketTCP.cpp",
|
||||
"SFML/Network/SocketUDP.cpp",
|
||||
"SFML/Network/Unix/SocketHelper.cpp",
|
||||
]
|
||||
|
||||
env_sfml = env.Clone(
|
||||
CCFLAGS = env.filterWarnings(env['CCFLAGS']),
|
||||
CXXFLAGS = env.filterWarnings(env['CXXFLAGS']),
|
||||
)
|
||||
|
||||
env_sfml.StaticLibrary(env['local_libs'] + "sfml", files)
|
Loading…
Add table
Add a link
Reference in a new issue