Page Menu
Home
Phabricator (Chris)
Search
Configure Global Search
Log In
Files
F125920
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/util/gme/SConscript b/util/gme/SConscript
new file mode 100644
index 00000000..360a1458
--- /dev/null
+++ b/util/gme/SConscript
@@ -0,0 +1,23 @@
+Import('use')
+
+gmeEnv = use.Clone()
+
+# These things are defined by gme_types.h
+if False:
+ gmeEnv.Append(CPPDEFINES = Split("""USE_GME_NSF USE_GME_NSFE USE_GME_KSS
+USE_GME_AY USE_GME_GBS USE_GME_GYM USE_GME_HES USE_GME_SAP USE_GME_SPC USE_GME_VGM
+"""))
+
+source = Split("""Ay_Apu.cpp Ay_Cpu.cpp Ay_Emu.cpp Blip_Buffer.cpp
+Classic_Emu.cpp Data_Reader.cpp Dual_Resampler.cpp Effects_Buffer.cpp
+Fir_Resampler.cpp Gb_Apu.cpp Gb_Cpu.cpp Gb_Oscs.cpp Gbs_Emu.cpp gme.cpp
+Gme_File.cpp Gym_Emu.cpp Hes_Apu.cpp Hes_Cpu.cpp Hes_Emu.cpp Kss_Cpu.cpp
+Kss_Emu.cpp Kss_Scc_Apu.cpp M3u_Playlist.cpp Multi_Buffer.cpp Music_Emu.cpp
+Nes_Apu.cpp Nes_Cpu.cpp Nes_Fme7_Apu.cpp Nes_Namco_Apu.cpp Nes_Oscs.cpp
+Nes_Vrc6_Apu.cpp Nsfe_Emu.cpp Nsf_Emu.cpp Sap_Apu.cpp Sap_Cpu.cpp Sap_Emu.cpp
+Sms_Apu.cpp Snes_Spc.cpp Spc_Cpu.cpp Spc_Dsp.cpp Spc_Emu.cpp Vgm_Emu.cpp
+Vgm_Emu_Impl.cpp Ym2413_Emu.cpp Ym2612_Emu.cpp""")
+
+library = gmeEnv.StaticLibrary('gme', source)
+Return('library')
+
diff --git a/util/sdl/mixer/SConscript b/util/sdl/mixer/SConscript
new file mode 100644
index 00000000..7bf7dada
--- /dev/null
+++ b/util/sdl/mixer/SConscript
@@ -0,0 +1,22 @@
+Import('use')
+
+mixer = use.Clone()
+
+try:
+ if mixer['HAVE_OGG']:
+ mixer.Append(CPPDEFINES = ['OGG_MUSIC'])
+except KeyError:
+ pass
+
+try:
+ if mixer['HAVE_MP3_MAD']:
+ mixer.Append(CPPDEFINES = ['MP3_MAD_MUSIC'])
+except KeyError:
+ pass
+
+source = Split(""" music.c mixer.c music_ogg.c music_flac.c music_mad.c
+dynamic_ogg.c effect_position.c effects_internal.c effect_stereoreverse.c
+load_voc.c load_ogg.c load_aiff.c wavestream.c """)
+
+library = mixer.StaticLibrary('sdl-mixer', source)
+Return('library')
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Thu, Jun 11, 10:08 AM (3 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68293
Default Alt Text
(1 KB)
Attached To
Mode
R75 R-Tech1
Attached
Detach File
Event Timeline