mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-12 13:21:51 +00:00
43 lines
1 KiB
CMake
43 lines
1 KiB
CMake
cmake_minimum_required( VERSION 2.8.7 )
|
|
|
|
make_release_only()
|
|
use_fast_math()
|
|
|
|
# we play with out own sequencer
|
|
add_definitions(-DOPNMIDI_DISABLE_MIDI_SEQUENCER)
|
|
|
|
# Disable OPNMIDI's experimental yet emulator (using of it has some issues and missing notes in playback)
|
|
add_definitions(-DOPNMIDI_DISABLE_GX_EMULATOR)
|
|
|
|
add_library( opn STATIC
|
|
chips/gens_opn2.cpp
|
|
chips/gens/Ym2612_Emu.cpp
|
|
chips/gx_opn2.cpp
|
|
chips/mamefm/fm.cpp
|
|
chips/mamefm/resampler.cpp
|
|
chips/mamefm/ymdeltat.cpp
|
|
chips/mame_opn2.cpp
|
|
chips/mame_opna.cpp
|
|
chips/np2/fmgen_file.cpp
|
|
chips/np2/fmgen_fmgen.cpp
|
|
chips/np2/fmgen_fmtimer.cpp
|
|
chips/np2/fmgen_opna.cpp
|
|
chips/np2/fmgen_psg.cpp
|
|
chips/np2_opna.cpp
|
|
chips/nuked_opn2.cpp
|
|
chips/pmdwin_opna.cpp
|
|
opnmidi.cpp
|
|
opnmidi_load.cpp
|
|
opnmidi_midiplay.cpp
|
|
opnmidi_opn2.cpp
|
|
opnmidi_private.cpp
|
|
chips/gx/gx_ym2612.c
|
|
chips/mamefm/emu2149.c
|
|
chips/mame/mame_ym2612fm.c
|
|
chips/nuked/ym3438.c
|
|
chips/pmdwin/opna.c
|
|
chips/pmdwin/psg.c
|
|
chips/pmdwin/rhythmdata.c
|
|
wopn/wopn_file.c
|
|
)
|
|
target_link_libraries( opn )
|