mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
540238cf79
with static libraries. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7280 8ced0084-cf51-0410-be5f-012b33b47a6e
21 lines
491 B
Python
21 lines
491 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
if env.has_key('shared_sfml') and env['shared_sfml']:
|
|
Return()
|
|
|
|
files = [
|
|
'src/SFML/Network/Ftp.cpp',
|
|
'src/SFML/Network/Http.cpp',
|
|
'src/SFML/Network/IPAddress.cpp',
|
|
'src/SFML/Network/Packet.cpp',
|
|
'src/SFML/Network/SelectorBase.cpp',
|
|
'src/SFML/Network/SocketTCP.cpp',
|
|
'src/SFML/Network/SocketUDP.cpp',
|
|
'src/SFML/Network/Unix/SocketHelper.cpp',
|
|
]
|
|
|
|
env['CPPPATH'] += ['#Externals/SFML/include']
|
|
env['LIBS'] += env.StaticLibrary('sfml-network', files)
|