using precompiled qvg files to avoid problems when cross compiling
This commit is contained in:
parent
64f4207153
commit
5fc7403ecc
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,7 +7,6 @@ lib
|
||||
bin
|
||||
plugins
|
||||
fontconfig
|
||||
qvg
|
||||
*.swp
|
||||
qskinny.pro.user
|
||||
*.o
|
||||
|
@ -24,26 +24,5 @@ SOURCES += \
|
||||
SpeedometerDisplay.cpp
|
||||
|
||||
RESOURCES += \
|
||||
images.qrc
|
||||
|
||||
QVGRESOURCES += \
|
||||
images.qrc \
|
||||
qvgfiles.qrc
|
||||
|
||||
SVGSOURCES = \
|
||||
images/car.svg \
|
||||
images/left.svg \
|
||||
images/down.svg \
|
||||
images/right.svg \
|
||||
images/up.svg \
|
||||
images/bluetooth.svg \
|
||||
images/bookmark.svg \
|
||||
images/bus.svg \
|
||||
images/cloud.svg \
|
||||
images/compass.svg \
|
||||
images/location.svg \
|
||||
images/man.svg \
|
||||
images/menu.svg \
|
||||
images/phone.svg \
|
||||
images/plane.svg \
|
||||
images/train.svg \
|
||||
images/user.svg
|
||||
|
BIN
examples/automotive/qvg/bluetooth.qvg
Normal file
BIN
examples/automotive/qvg/bluetooth.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/bookmark.qvg
Normal file
BIN
examples/automotive/qvg/bookmark.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/bus.qvg
Normal file
BIN
examples/automotive/qvg/bus.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/car.qvg
Normal file
BIN
examples/automotive/qvg/car.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/cloud.qvg
Normal file
BIN
examples/automotive/qvg/cloud.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/down.qvg
Normal file
BIN
examples/automotive/qvg/down.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/left.qvg
Normal file
BIN
examples/automotive/qvg/left.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/location.qvg
Normal file
BIN
examples/automotive/qvg/location.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/man.qvg
Normal file
BIN
examples/automotive/qvg/man.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/menu.qvg
Normal file
BIN
examples/automotive/qvg/menu.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/phone.qvg
Normal file
BIN
examples/automotive/qvg/phone.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/plane.qvg
Normal file
BIN
examples/automotive/qvg/plane.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/right.qvg
Normal file
BIN
examples/automotive/qvg/right.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/train.qvg
Normal file
BIN
examples/automotive/qvg/train.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/up.qvg
Normal file
BIN
examples/automotive/qvg/up.qvg
Normal file
Binary file not shown.
BIN
examples/automotive/qvg/user.qvg
Normal file
BIN
examples/automotive/qvg/user.qvg
Normal file
Binary file not shown.
BIN
examples/qvgviewer/qvg/01.01.10.qvg
Normal file
BIN
examples/qvgviewer/qvg/01.01.10.qvg
Normal file
Binary file not shown.
BIN
examples/qvgviewer/qvg/01.03.04q.qvg
Normal file
BIN
examples/qvgviewer/qvg/01.03.04q.qvg
Normal file
Binary file not shown.
BIN
examples/qvgviewer/qvg/01.08.05q.qvg
Normal file
BIN
examples/qvgviewer/qvg/01.08.05q.qvg
Normal file
Binary file not shown.
BIN
examples/qvgviewer/qvg/01.25.18.qvg
Normal file
BIN
examples/qvgviewer/qvg/01.25.18.qvg
Normal file
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
CONFIG += qskexample qskqvg
|
||||
CONFIG += qskexample
|
||||
|
||||
HEADERS += \
|
||||
MainWindow.h
|
||||
@ -7,6 +7,12 @@ SOURCES += \
|
||||
MainWindow.cpp \
|
||||
main.cpp
|
||||
|
||||
# CONFIG += autoqvg
|
||||
|
||||
autoqvg {
|
||||
|
||||
CONFIG += qskqvg
|
||||
|
||||
QVGRESOURCES += \
|
||||
qvgviewer.qrc
|
||||
|
||||
@ -15,3 +21,14 @@ SVGSOURCES = \
|
||||
svg/01.03.04q.svg \
|
||||
svg/01.08.05q.svg \
|
||||
svg/01.25.18.svg
|
||||
|
||||
} else {
|
||||
|
||||
# When cross compiling we need to have the svg2qvg tool being
|
||||
# compiled for the build environment - not for the one of the target.
|
||||
# So we better have precompiled qvg files in the repository to
|
||||
# make the build process much easier
|
||||
|
||||
RESOURCES += \
|
||||
qvgviewer.qrc
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user