Skip to content

Commit

Permalink
Clean-up config / Adding example files
Browse files Browse the repository at this point in the history
  • Loading branch information
Wohlstand committed Jun 9, 2016
1 parent b988819 commit 21472fe
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ qrc_*.cpp
ui_*.h
Makefile*
*build-*
/_build_data/*
/bin-*/*

# QtCreator

Expand Down
Binary file added Bank_Examples/2x2.op3
Binary file not shown.
Binary file added Bank_Examples/fat2.op3
Binary file not shown.
Binary file added Bank_Examples/fat4.op3
Binary file not shown.
Binary file added Bank_Examples/jv_2op.op3
Binary file not shown.
Binary file added Bank_Examples/wallace.op3
Binary file not shown.
30 changes: 27 additions & 3 deletions FMBankEdit.pro
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,33 @@ QT += core gui widgets multimedia
TARGET = FMBankEdit
TEMPLATE = app

android:{
ARCH=android_arm
} else {
!contains(QMAKE_TARGET.arch, x86_64) {
ARCH=x32
} else {
ARCH=x64
}
}

debug: {
BUILDTP=debug
DEFINES += DEBUG_BUILD=1
DESTDIR = $$PWD/bin-debug/
} else: release: {
BUILDTP=release
DESTDIR = $$PWD/bin-release/
}

BUILD_OBJ_DIR = $$PWD/_build_data

OBJECTS_DIR = $$BUILD_OBJ_DIR/_build_$$ARCH/$$TARGET/_$$BUILDTP/.obj
MOC_DIR = $$BUILD_OBJ_DIR/_build_$$ARCH/$$TARGET/_$$BUILDTP/.moc
RCC_DIR = $$BUILD_OBJ_DIR/_build_$$ARCH/$$TARGET/_$$BUILDTP/.rcc
UI_DIR = $$BUILD_OBJ_DIR/_build_$$ARCH/$$TARGET/_$$BUILDTP/.ui


SOURCES += main.cpp\
bank_editor.cpp \
ins_names.cpp \
Expand All @@ -22,10 +49,7 @@ HEADERS += bank_editor.h \
bank.h \
FileFormats/junlevizion.h \
version.h \
opl/adldata.hh \
opl/adlmidi.h \
opl/dbopl.h \
opl/fraction.h \
opl/generator.h

FORMS += bank_editor.ui

0 comments on commit 21472fe

Please sign in to comment.