mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
05719ac81a
consistent with the other build systems. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7282 8ced0084-cf51-0410-be5f-012b33b47a6e
30 lines
612 B
Python
30 lines
612 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
'Src/BannerLoader.cpp',
|
|
'Src/BannerLoaderGC.cpp',
|
|
'Src/BannerLoaderWii.cpp',
|
|
'Src/Blob.cpp',
|
|
'Src/CISOBlob.cpp',
|
|
'Src/CompressedBlob.cpp',
|
|
'Src/DiscScrubber.cpp',
|
|
'Src/DriveBlob.cpp',
|
|
'Src/FileBlob.cpp',
|
|
'Src/FileHandlerARC.cpp',
|
|
'Src/FileMonitor.cpp',
|
|
'Src/FileSystemGCWii.cpp',
|
|
'Src/Filesystem.cpp',
|
|
'Src/NANDContentLoader.cpp',
|
|
'Src/VolumeCommon.cpp',
|
|
'Src/VolumeCreator.cpp',
|
|
'Src/VolumeDirectory.cpp',
|
|
'Src/VolumeGC.cpp',
|
|
'Src/VolumeWad.cpp',
|
|
'Src/VolumeWiiCrypted.cpp',
|
|
'Src/WiiWad.cpp',
|
|
]
|
|
|
|
env['LIBS'] += env.StaticLibrary('discio', files)
|