Skip to content

Commit

Permalink
Updated project file for other platforms. Added note
Browse files Browse the repository at this point in the history
Signed-off-by: Vladimir Ulrich <[email protected]>
  • Loading branch information
Wedmer committed Jul 20, 2017
1 parent 02ab3c6 commit bcd6744
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
21 changes: 17 additions & 4 deletions OctaChainer.pro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ QT += core gui network multimedia

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = OctaChainerv1_3_OSX
macx{
TARGET = OctaChainerv1_3_OSX
}
else
{
TARGET = OctaChainer
}

TEMPLATE = app


Expand Down Expand Up @@ -37,6 +44,12 @@ FORMS += mainwindow.ui \
tabgridwidget.ui \
tabstepswidget.ui

LIBS += -L$$PWD/libsndfile/lib/ -lsndfile.1
INCLUDEPATH += $$PWD/libsndfile/include
DEPENDPATH += $$PWD/libsndfile/include
macx{
LIBS += -L$$PWD/libsndfile/lib/ -lsndfile.1
INCLUDEPATH += $$PWD/libsndfile/include
DEPENDPATH += $$PWD/libsndfile/include
}else{
*-g++{
LIBS+=-lsndfile
}
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# OctaChainer
A QT GUI tool for chaining audio files into a long wav file and an ".ot" file used by the Elektron Octatrack sampler.
To compile you should install QT5 and libsndfile development libraries with all their dependencies.

0 comments on commit bcd6744

Please sign in to comment.