File: xdf.pro

package info (click to toggle)
libxdf 0.98%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 516 kB
  • sloc: ansic: 1,656; cpp: 900; makefile: 10
file content (35 lines) | stat: -rw-r--r-- 622 bytes parent folder | download
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
QT -= gui

TARGET = xdf
TEMPLATE = lib
CONFIG += c++11 shared_and_static build_all

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
}