2009-01-15 08:48:15 +02:00
|
|
|
# -*- python -*-
|
2008-09-21 22:54:29 +03:00
|
|
|
|
2008-07-12 20:40:22 +03:00
|
|
|
Import('env')
|
|
|
|
|
2008-09-23 03:35:07 +03:00
|
|
|
files = [
|
|
|
|
'BannerLoader.cpp',
|
|
|
|
'BannerLoaderGC.cpp',
|
|
|
|
'BannerLoaderWii.cpp',
|
|
|
|
'Blob.cpp',
|
|
|
|
'CompressedBlob.cpp',
|
2010-12-29 17:23:02 +02:00
|
|
|
'CISOBlob.cpp',
|
2008-09-23 03:35:07 +03:00
|
|
|
'DriveBlob.cpp',
|
2009-05-21 22:20:03 +03:00
|
|
|
'DiscScrubber.cpp',
|
2008-09-23 03:35:07 +03:00
|
|
|
'FileBlob.cpp',
|
|
|
|
'FileHandlerARC.cpp',
|
|
|
|
'Filesystem.cpp',
|
|
|
|
'FileSystemGCWii.cpp',
|
2009-07-04 01:34:51 +03:00
|
|
|
'VolumeCommon.cpp',
|
2008-09-23 03:35:07 +03:00
|
|
|
'VolumeCreator.cpp',
|
|
|
|
'VolumeDirectory.cpp',
|
|
|
|
'VolumeGC.cpp',
|
2009-07-04 01:34:51 +03:00
|
|
|
'VolumeWad.cpp',
|
2008-09-23 03:35:07 +03:00
|
|
|
'VolumeWiiCrypted.cpp',
|
2010-07-19 06:42:37 +03:00
|
|
|
'FileMonitor.cpp',
|
2009-02-28 10:54:23 +02:00
|
|
|
'NANDContentLoader.cpp',
|
2009-07-04 01:34:51 +03:00
|
|
|
'WiiWad.cpp',
|
2008-09-23 03:35:07 +03:00
|
|
|
]
|
2010-06-10 17:18:21 +03:00
|
|
|
|
2010-06-10 18:33:51 +03:00
|
|
|
libs = [
|
|
|
|
'common'
|
|
|
|
]
|
2010-07-19 06:42:37 +03:00
|
|
|
|
2010-06-10 18:33:51 +03:00
|
|
|
env.StaticLibrary(env['local_libs'] + 'discio', files, LIBS = libs)
|