blob: f60d3a2bb4e9bae8277901867a252dbdbda50a99 (
plain)
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
|
TEMPLATE=app
CONFIG-=qt
CONFIG+=console
TARGET=gen_adldata
DESTDIR=$$PWD/../../bin
CONFIG += c++11
include($$PWD/ini/IniProcessor.pri)
#DEFINES += ADLMIDI_USE_DOSBOX_OPL
QMAKE_CXXFLAGS_RELEASE += -O3 -finline-functions
LIBS += -lpthread
HEADERS += \
midi_inst_list.h \
../nukedopl3.h \
../dbopl.h \
progs_cache.h \
file_formats/load_bnk.h \
file_formats/load_bnk2.h \
file_formats/load_op2.h \
file_formats/load_ail.h \
file_formats/load_ibk.h \
file_formats/load_jv.h \
file_formats/load_tmb.h \
file_formats/load_bisqwit.h \
measurer.h
SOURCES += \
gen_adldata.cc \
../nukedopl3.c \
../dbopl.cpp \
progs_cache.cpp \
measurer.cpp
|