2008-09-21 19:54:29 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
Import('env')
|
|
|
|
|
2008-09-23 00:35:07 +00:00
|
|
|
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',
|
|
|
|
]
|
2008-09-21 19:54:29 +00:00
|
|
|
libs = [
|
2008-09-23 00:35:07 +00:00
|
|
|
'common'
|
|
|
|
]
|
|
|
|
env.StaticLibrary('discio', files, LIBS = libs)
|