2008-09-21 19:54:29 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
files = ["BannerLoader.cpp",
|
|
|
|
"BannerLoaderGC.cpp",
|
|
|
|
"BannerLoaderWii.cpp",
|
|
|
|
"Blob.cpp",
|
2008-09-17 23:25:35 +00:00
|
|
|
"CompressedBlob.cpp",
|
|
|
|
"DriveBlob.cpp",
|
|
|
|
"FileBlob.cpp",
|
2008-07-12 17:40:22 +00:00
|
|
|
"FileHandlerARC.cpp",
|
|
|
|
"Filesystem.cpp",
|
|
|
|
"FileSystemGCWii.cpp",
|
|
|
|
"VolumeCreator.cpp",
|
|
|
|
"VolumeGC.cpp",
|
|
|
|
"VolumeWiiCrypted.cpp",
|
|
|
|
"AES/aes_cbc.c",
|
|
|
|
"AES/aes_core.c",
|
|
|
|
]
|
2008-09-21 19:54:29 +00:00
|
|
|
libs = [
|
|
|
|
'common'
|
|
|
|
]
|
|
|
|
env.StaticLibrary("discio", files, LIBS = libs)
|