mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-05 03:16:42 -05:00
Use SCons' convenient # shorthand for the root of our tree. Also various minor cleanup of SConscripts. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5915 8ced0084-cf51-0410-be5f-012b33b47a6e
17 lines
353 B
Python
17 lines
353 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
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.StaticLibrary(env['local_libs'] + "sfml-network", files)
|