-
Notifications
You must be signed in to change notification settings - Fork 7
/
libOPNMIDI.pro
59 lines (52 loc) · 1.42 KB
/
libOPNMIDI.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Project file for the Qt Creator IDE
#
TEMPLATE = lib
CONFIG -= qt
CONFIG += staticlib
TARGET = OPNMIDI
INSTALLINCLUDES = $$PWD/include/*
INSTALLINCLUDESTO = OPNMIDI
include($$PWD/../audio_codec_common.pri)
DEFINES += ENABLE_END_SILENCE_SKIPPING
macx: QMAKE_CXXFLAGS_WARN_ON += -Wno-absolute-value
INCLUDEPATH += $$PWD $$PWD/include
HEADERS += \
include/opnmidi.h \
src/chips/gens_opn2.h \
src/chips/gens/Ym2612_Emu.h \
src/chips/mame/mamedef.h \
src/chips/mame/mame_ym2612fm.h \
src/chips/mame_opn2.h \
src/chips/nuked_opn2.h \
src/chips/nuked/ym3438.h \
src/chips/gx_opn2.h \
src/chips/gx/gx_ym2612.h \
src/chips/opn_chip_base.h \
src/chips/opn_chip_base.tcc \
src/chips/opn_chip_family.h \
src/cvt_mus2mid.hpp \
src/cvt_xmi2mid.hpp \
src/midi_sequencer.h \
src/midi_sequencer.hpp \
src/midi_sequencer_impl.hpp \
src/fraction.hpp \
src/opnbank.h \
src/opnmidi_private.hpp \
src/wopn/wopn_file.h
SOURCES += \
src/chips/gens_opn2.cpp \
src/chips/gens/Ym2612_Emu.cpp \
src/chips/gx/gx_ym2612.c \
src/chips/gx_opn2.cpp \
src/chips/mame/mame_ym2612fm.c \
src/chips/mame_opn2.cpp \
src/chips/nuked_opn2.cpp \
src/chips/nuked/ym3438.c \
src/opnmidi.cpp \
src/opnmidi_load.cpp \
src/opnmidi_midiplay.cpp \
src/opnmidi_opn2.cpp \
src/opnmidi_private.cpp \
src/opnmidi_sequencer.cpp \
src/wopn/wopn_file.c