Mercurial > hg > vamp-plugin-pack
annotate noconfig.pri @ 44:8dbbd57a9395
Subrepo update
author | Chris Cannam |
---|---|
date | Tue, 21 Jan 2020 14:56:32 +0000 |
parents | 4aea515b404f |
children | cf2840ba1e07 |
rev | line source |
---|---|
Chris@0 | 1 |
Chris@0 | 2 CONFIG += c++11 |
Chris@0 | 3 |
Chris@0 | 4 CONFIG += release |
Chris@0 | 5 |
Chris@0 | 6 PREFIX_PATH = /usr/local |
Chris@0 | 7 |
Chris@43 | 8 INCLUDEPATH += $$PWD/vamp-plugin-sdk $$PWD/dataquay $$PWD/dataquay/dataquay |
Chris@0 | 9 |
Chris@0 | 10 win32-msvc* { |
Chris@0 | 11 |
Chris@0 | 12 # This config is actually used only for 64-bit Windows builds. |
Chris@37 | 13 |
Chris@37 | 14 DEPLOYDIR = $$PWD/deploy/win64 |
Chris@37 | 15 |
Chris@25 | 16 INCLUDEPATH += /Libraries/boost_1_69_0 $$PWD/../boost_1_69_0/ $$PWD/sv-dependency-builds/win64-msvc/include |
Chris@25 | 17 LIBS += -L$$PWD -L$$PWD/sv-dependency-builds/win64-msvc/lib |
Chris@0 | 18 |
Chris@0 | 19 CONFIG(release) { |
Chris@0 | 20 LIBS += -NODEFAULTLIB:LIBCMT -Lrelease |
Chris@0 | 21 } |
Chris@0 | 22 |
Chris@15 | 23 DEFINES += NOMINMAX _USE_MATH_DEFINES HAVE_C99_VARARGS_MACROS |
Chris@0 | 24 } |
Chris@0 | 25 |
Chris@0 | 26 macx* { |
Chris@0 | 27 |
Chris@0 | 28 # All Mac builds are 64-bit these days. |
Chris@0 | 29 |
Chris@37 | 30 DEPLOYDIR = $$PWD/deploy/osx |
Chris@37 | 31 |
Chris@21 | 32 INCLUDEPATH += /usr/local/opt/boost/include $$PWD/sv-dependency-builds/osx/include |
Chris@21 | 33 LIBS += -L$$PWD -L$$PWD/sv-dependency-builds/osx/lib |
Chris@0 | 34 |
Chris@6 | 35 QMAKE_CXXFLAGS_RELEASE += -O3 -flto |
Chris@0 | 36 QMAKE_LFLAGS_RELEASE += -O3 -flto |
Chris@0 | 37 } |
Chris@0 | 38 |
Chris@0 | 39 linux* { |
Chris@37 | 40 |
Chris@37 | 41 DEPLOYDIR = $$PWD/deploy/linux |
Chris@37 | 42 |
Chris@10 | 43 QMAKE_CXXFLAGS_RELEASE += -O3 -flto |
Chris@16 | 44 QMAKE_LFLAGS_RELEASE += -O3 -flto -Wl,--no-undefined |
Chris@0 | 45 } |
Chris@0 | 46 |