1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
QT -= gui
TARGET = xdf
TEMPLATE = lib
CONFIG += c++11 shared_and_static build_all
INCLUDEPATH += pugixml
QMAKE_CFLAGS += -std=c99
SOURCES += xdf.cpp \
smarc/filtering.c \
smarc/multi_stage.c \
smarc/polyfilt.c \
smarc/remez_lp.c \
smarc/smarc.c \
smarc/stage_impl.c \
pugixml/pugixml.cpp
HEADERS += xdf.h \
smarc/filtering.h \
smarc/multi_stage.h \
smarc/polyfilt.h \
smarc/remez_lp.h \
smarc/smarc.h \
smarc/stage_impl.h \
pugixml/pugiconfig.hpp \
pugixml/pugixml.hpp
unix {
target.path = /usr/lib
INSTALLS += target
}
macx {
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.9
}
|