mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
b02ef69d49
Removed omission of frame pointers as it makes crash reports much less useful Modified warning flags to hide annoying reports for external code
25 lines
622 B
CMake
25 lines
622 B
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/mame/mame_ym2612fm.c
|
|
chips/mame_opn2.cpp
|
|
chips/nuked_opn2.cpp
|
|
chips/nuked/ym3438.c
|
|
opnmidi.cpp
|
|
opnmidi_load.cpp
|
|
opnmidi_midiplay.cpp
|
|
opnmidi_opn2.cpp
|
|
opnmidi_private.cpp
|
|
wopn/wopn_file.c )
|
|
target_link_libraries( opn )
|