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
|
bin
|
||||||
plugins
|
plugins
|
||||||
fontconfig
|
fontconfig
|
||||||
qvg
|
|
||||||
*.swp
|
*.swp
|
||||||
qskinny.pro.user
|
qskinny.pro.user
|
||||||
*.o
|
*.o
|
||||||
|
@ -24,26 +24,5 @@ SOURCES += \
|
|||||||
SpeedometerDisplay.cpp
|
SpeedometerDisplay.cpp
|
||||||
|
|
||||||
RESOURCES += \
|
RESOURCES += \
|
||||||
images.qrc
|
images.qrc \
|
||||||
|
|
||||||
QVGRESOURCES += \
|
|
||||||
qvgfiles.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 += \
|
HEADERS += \
|
||||||
MainWindow.h
|
MainWindow.h
|
||||||
@ -7,11 +7,28 @@ SOURCES += \
|
|||||||
MainWindow.cpp \
|
MainWindow.cpp \
|
||||||
main.cpp
|
main.cpp
|
||||||
|
|
||||||
QVGRESOURCES += \
|
# CONFIG += autoqvg
|
||||||
qvgviewer.qrc
|
|
||||||
|
|
||||||
SVGSOURCES = \
|
autoqvg {
|
||||||
svg/01.01.10.svg \
|
|
||||||
svg/01.03.04q.svg \
|
CONFIG += qskqvg
|
||||||
svg/01.08.05q.svg \
|
|
||||||
svg/01.25.18.svg
|
QVGRESOURCES += \
|
||||||
|
qvgviewer.qrc
|
||||||
|
|
||||||
|
SVGSOURCES = \
|
||||||
|
svg/01.01.10.svg \
|
||||||
|
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