mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
4439c1e092
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@630 8ced0084-cf51-0410-be5f-012b33b47a6e
27 lines
447 B
Python
27 lines
447 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
'BannerLoader.cpp',
|
|
'BannerLoaderGC.cpp',
|
|
'BannerLoaderWii.cpp',
|
|
'Blob.cpp',
|
|
'CompressedBlob.cpp',
|
|
'DriveBlob.cpp',
|
|
'FileBlob.cpp',
|
|
'FileHandlerARC.cpp',
|
|
'Filesystem.cpp',
|
|
'FileSystemGCWii.cpp',
|
|
'VolumeCreator.cpp',
|
|
'VolumeDirectory.cpp',
|
|
'VolumeGC.cpp',
|
|
'VolumeWiiCrypted.cpp',
|
|
'AES/aes_cbc.c',
|
|
'AES/aes_core.c',
|
|
]
|
|
libs = [
|
|
'common'
|
|
]
|
|
env.StaticLibrary('discio', files, LIBS = libs)
|