summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/SConscript
diff options
context:
space:
mode:
authorSoren Jorvang <soren.jorvang@gmail.com>2011-03-03 19:44:56 +0000
committerSoren Jorvang <soren.jorvang@gmail.com>2011-03-03 19:44:56 +0000
commit05719ac81ab1e784c7aeb85af1e9b227b9cdbe83 (patch)
tree027c8f2c6749972d41787e1180ff01fab3c0fd5c /Source/Core/DiscIO/SConscript
parent1e2d9223429e8bc52dab71fb2033f60dd72dea40 (diff)
Move SConscript files out from the Src subdirectories to be
consistent with the other build systems. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7282 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/SConscript')
-rw-r--r--Source/Core/DiscIO/SConscript29
1 files changed, 29 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/SConscript b/Source/Core/DiscIO/SConscript
new file mode 100644
index 0000000000..3c563cf5e3
--- /dev/null
+++ b/Source/Core/DiscIO/SConscript
@@ -0,0 +1,29 @@
+# -*- python -*-
+
+Import('env')
+
+files = [
+ 'Src/BannerLoader.cpp',
+ 'Src/BannerLoaderGC.cpp',
+ 'Src/BannerLoaderWii.cpp',
+ 'Src/Blob.cpp',
+ 'Src/CISOBlob.cpp',
+ 'Src/CompressedBlob.cpp',
+ 'Src/DiscScrubber.cpp',
+ 'Src/DriveBlob.cpp',
+ 'Src/FileBlob.cpp',
+ 'Src/FileHandlerARC.cpp',
+ 'Src/FileMonitor.cpp',
+ 'Src/FileSystemGCWii.cpp',
+ 'Src/Filesystem.cpp',
+ 'Src/NANDContentLoader.cpp',
+ 'Src/VolumeCommon.cpp',
+ 'Src/VolumeCreator.cpp',
+ 'Src/VolumeDirectory.cpp',
+ 'Src/VolumeGC.cpp',
+ 'Src/VolumeWad.cpp',
+ 'Src/VolumeWiiCrypted.cpp',
+ 'Src/WiiWad.cpp',
+ ]
+
+env['LIBS'] += env.StaticLibrary('discio', files)