Fail to deploy ttf files on Qt 5.2.1
Installation and Deployment
1
Posts
1
Posters
549
Views
1
Watching
-
I'm developing an Android app with Qt 5.2.1. It's working, but it's not deploying any ttf font.
That’s my .pro file:QML_FILES.source = source/qml/*
QML_FILES.files = *.qml
QML_FILES.target = .ASSETS_FILES.source = source/assets/*
ASSETS_FILES.files = .
ASSETS_FILES.target = .FONT_FILES.source = source/fonts/*
FONT_FILES.files = .
FONT_FILES.target = ./fontsDEPLOYMENTFOLDERS +=
QML_FILES
ASSETS_FILES
FONT_FILESAfter build, my assets have all file (including ttf), but when I open the .apk file there'snt any ttf file (just qml and png).
What could be causing this? It's a Qt bug or a bad configuration?