aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWohlstand <admin@wohlnet.ru>2017-09-30 15:31:04 +0300
committerWohlstand <admin@wohlnet.ru>2017-09-30 15:31:04 +0300
commit3a63abfcac78e0b62f1af3d8b9961554896f59ff (patch)
tree15cee85512a2c4b8ef2754cb0e9c715ee91966ee
parent9f3c398387b3027f2e2bf99030366dd11764a1b4 (diff)
downloadlibADLMIDI-3a63abfcac78e0b62f1af3d8b9961554896f59ff.tar.gz
libADLMIDI-3a63abfcac78e0b62f1af3d8b9961554896f59ff.tar.bz2
libADLMIDI-3a63abfcac78e0b62f1af3d8b9961554896f59ff.zip
Add small QMake project for testing and debugging from Qt Creator
-rw-r--r--libADLMIDI-test.pro33
1 files changed, 33 insertions, 0 deletions
diff --git a/libADLMIDI-test.pro b/libADLMIDI-test.pro
new file mode 100644
index 0000000..22871d4
--- /dev/null
+++ b/libADLMIDI-test.pro
@@ -0,0 +1,33 @@
+TEMPLATE=app
+CONFIG-=qt
+CONFIG+=console
+
+TARGET=adlmidiplay
+DESTDIR=$$PWD/bin/
+
+INCLUDEPATH += /home/vitaly/_git_repos/PGE-Project/_Libs/_builds/linux/include
+INCLUDEPATH += $$PWD/src
+LIBS += -L/home/vitaly/_git_repos/PGE-Project/_Libs/_builds/linux/lib
+LIBS += -Wl,-Bstatic -lSDL2 -Wl,-Bdynamic -lpthread -ldl
+
+HEADERS += \
+ src/adlbank.h \
+ src/adldata.hh \
+ src/adlmidi.h \
+ src/adlmidi_mus2mid.h \
+ src/adlmidi_private.hpp \
+ src/adlmidi_xmi2mid.h \
+ src/fraction.h \
+ src/nukedopl3.h
+
+SOURCES += \
+ src/adldata.cpp \
+ src/adlmidi.cpp \
+ src/adlmidi_load.cpp \
+ src/adlmidi_midiplay.cpp \
+ src/adlmidi_mus2mid.c \
+ src/adlmidi_opl3.cpp \
+ src/adlmidi_private.cpp \
+ src/adlmidi_xmi2mid.c \
+ src/midiplay/adlmidiplay.cpp \
+ src/nukedopl3.c