I think I did follow all the step guided here. [qt-project.org]. I guess res file has linked with the `exe` because the file size has increased.
My .pro file (vaastu.pro)
QT += sql core gui printsupport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = vaastu
TEMPLATE = app
win32 {
RC_FILE = vaastu.rc
}
SOURCES += ...
HEADERS += ....
FORMS += ...
RESOURCES += \
Fonts.qrc
My .rc file (vaastu.rc)
IDI_ICON1 ICON DISCARDABLE "vaastu.ico"
↧