# HG changeset patch # User Chris Cannam # Date 1477302771 -3600 # Node ID eb60f984c66c280b8b05a9bfc9634a394b121f1f # Parent cbb241e9142643a1fc1c46caa99065e245a5484d Server project file diff -r cbb241e91426 -r eb60f984c66c server.pro --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/server.pro Mon Oct 24 10:52:51 2016 +0100 @@ -0,0 +1,68 @@ + +TEMPLATE = app + +CONFIG += qt stl c++11 exceptions console warn_on +QT -= xml network gui widgets + +exists(config.pri) { + include(config.pri) +} + +win32-g++ { + INCLUDEPATH += sv-dependency-builds/win32-mingw/include + LIBS += -Lrelease -Lsv-dependency-builds/win32-mingw/lib +} +win32-msvc* { + # We actually expect MSVC to be used only for 64-bit builds, + # though the qmake spec is still called win32-msvc* + INCLUDEPATH += sv-dependency-builds/win64-msvc/include +# bah, this is happening even if not debug build + CONFIG(debug) { + LIBS += -NODEFAULTLIB:MSVCRT -Ldebug \ + -L../sonic-visualiser/sv-dependency-builds/win64-msvc/lib/debug \ + -L../sonic-visualiser/sv-dependency-builds/win64-msvc/lib + } +# CONFIG(release) { +# LIBS += -Lrelease \ +# -L../sonic-visualiser/sv-dependency-builds/win64-msvc/lib +# } +} +mac* { + INCLUDEPATH += sv-dependency-builds/osx/include + LIBS += -Lsv-dependency-builds/osx/lib +} + +# Using the "console" CONFIG flag above should ensure this happens for +# normal Windows builds, but this may be necessary when cross-compiling +win32-x-g++:QMAKE_LFLAGS += -Wl,-subsystem,console + +!win32 { + QMAKE_CXXFLAGS += -Werror +} + +TARGET = piper-vamp-server + +OBJECTS_DIR = o +MOC_DIR = o + +INCLUDEPATH += piper-cpp vamp-plugin-sdk +LIBS += -lcapnp -lkj + +HEADERS += \ + piper-cpp/vamp-capnp/piper.capnp.h \ + piper-cpp/vamp-capnp/VampnProto.h + +SOURCES += \ + piper-cpp/vamp-capnp/piper-capnp.cpp \ + piper-cpp/vamp-server/server.cpp + +SOURCES += \ + vamp-plugin-sdk/src/vamp-hostsdk/PluginBufferingAdapter.cpp \ + vamp-plugin-sdk/src/vamp-hostsdk/PluginChannelAdapter.cpp \ + vamp-plugin-sdk/src/vamp-hostsdk/PluginHostAdapter.cpp \ + vamp-plugin-sdk/src/vamp-hostsdk/PluginInputDomainAdapter.cpp \ + vamp-plugin-sdk/src/vamp-hostsdk/PluginLoader.cpp \ + vamp-plugin-sdk/src/vamp-hostsdk/PluginSummarisingAdapter.cpp \ + vamp-plugin-sdk/src/vamp-hostsdk/PluginWrapper.cpp \ + vamp-plugin-sdk/src/vamp-hostsdk/RealTime.cpp \ + vamp-plugin-sdk/src/vamp-hostsdk/Files.cpp diff -r cbb241e91426 -r eb60f984c66c sonic-visualiser.pro --- a/sonic-visualiser.pro Thu Oct 20 18:35:09 2016 +0100 +++ b/sonic-visualiser.pro Mon Oct 24 10:52:51 2016 +0100 @@ -1,5 +1,5 @@ TEMPLATE = subdirs -SUBDIRS = sub_bq sub_dataquay svcore svgui svapp checker sub_sv +SUBDIRS = sub_bq sub_dataquay svcore svgui svapp checker sub_server sub_sv !win* { # We should build and run the tests on any platform, @@ -13,6 +13,8 @@ sub_dataquay.file = dataquay/lib.pro +sub_server.file = server.pro + svgui.depends = svcore svapp.depends = svcore svgui sub_sv.depends = svcore svgui svapp