mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06: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:
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)
|
Reference in New Issue
Block a user