qskinny/tools/svg2qvg/svg2qvg.pro

43 lines
731 B
Prolog
Raw Normal View History

2017-07-21 18:21:34 +02:00
QSK_ROOT = $${PWD}/../..
QSK_OUT_ROOT = $${OUT_PWD}/../..
TEMPLATE = app
2018-10-26 09:04:08 +02:00
TARGET = svg2qvg
2017-07-21 18:21:34 +02:00
QT += svg
CONFIG += standalone
2019-03-09 16:24:41 +01:00
CONFIG -= app_bundle
2017-07-21 18:21:34 +02:00
QSK_DIRS = \
$${QSK_ROOT}/src/common \
$${QSK_ROOT}/src/graphic
INCLUDEPATH *= $${QSK_DIRS}
DEPENDPATH += $${QSK_DIRS}
DESTDIR = $${QSK_OUT_ROOT}/tools/bin
standalone {
# We only need a very small subset of QSkinny and by including the
# necessary cpp files svg2qvg becomes independent from the library
DEFINES += QSK_STANDALONE
}
else {
LIBS *= -L$${QSK_OUT_ROOT}/lib -lqskinny
2017-07-21 18:21:34 +02:00
contains(QSK_CONFIG, QskDll) {
DEFINES += QSK_DLL
}
}
2017-07-21 18:21:34 +02:00
SOURCES += \
main.cpp
2018-10-26 09:04:08 +02:00
target.path = $${QSK_INSTALL_BINS}
INSTALLS = target