Mercurial > hg > sonic-visualiser
view server.pro @ 1300:f7481cb5a1ff project-file-rework
Rename server to simple-server, and add some more description in usage
author | Chris Cannam |
---|---|
date | Fri, 28 Oct 2016 11:08:17 +0100 |
parents | 9027d12841af |
children | 26da0e253e68 |
line wrap: on
line source
TEMPLATE = app CONFIG += stl c++11 exceptions console warn_on CONFIG -= qt exists(config.pri) { include(config.pri) } !exists(config.pri) { include(noconfig.pri) macx*: LIBS -= -framework CoreAudio -framework CoreMidi -framework AudioUnit -framework AudioToolbox -framework CoreFoundation -framework CoreServices -framework Accelerate -lbz2 -lz LIBS -= -lbz2 -lrubberband -lfftw3 -lfftw3f -lsndfile -lFLAC -lvorbis -lvorbisenc -lvorbisfile -logg -lmad -lid3tag -lportaudio -lsamplerate -lz -lsord-0 -lserd-0 -lpthread win32-g++: { QMAKE_CXXFLAGS += -static-libgcc -static-libstdc++ QMAKE_LFLAGS += -static-libgcc -static-libstdc++ } } # 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 macx*: CONFIG -= app_bundle linux*: LIBS += -ldl TARGET = piper-vamp-simple-server OBJECTS_DIR = o MOC_DIR = o INCLUDEPATH += piper-cpp vamp-plugin-sdk include(vamp-plugin-sdk-files.pri) for (file, VAMP_SOURCES) { SOURCES += $$file } for (file, VAMP_HEADERS) { HEADERS += $$file } HEADERS += \ piper-cpp/vamp-capnp/piper.capnp.h \ piper-cpp/vamp-capnp/VampnProto.h SOURCES += \ piper-cpp/vamp-capnp/piper-capnp.cpp \ piper-cpp/json11/json11.cpp \ piper-cpp/vamp-server/simple-server.cpp