Added new source file "VolumeDirectory.cpp". And reformatted.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@630 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
93afa3c5bb
commit
4439c1e092
|
@ -2,23 +2,25 @@
|
|||
|
||||
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",
|
||||
"VolumeGC.cpp",
|
||||
"VolumeWiiCrypted.cpp",
|
||||
"AES/aes_cbc.c",
|
||||
"AES/aes_core.c",
|
||||
]
|
||||
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)
|
||||
'common'
|
||||
]
|
||||
env.StaticLibrary('discio', files, LIBS = libs)
|
||||
|
|
Loading…
Reference in New Issue