Icon for the Windows runtime executable. Fixes #1310

This commit is contained in:
Neel Patel 2016-06-08 10:54:28 +01:00 committed by Dave Page
parent c7862cadad
commit d1a0a9bab2
2 changed files with 8 additions and 1 deletions

View File

@ -2,9 +2,15 @@
greaterThan(QT_MAJOR_VERSION, 4) {
message(Building for QT5+...)
QT += webkitwidgets network widgets
win32 {
RC_ICONS += pgAdmin4.ico
}
} else {
message(Building for QT4...)
QT += webkit network
QT += webkit network
win32 {
RC_FILE += pgAdmin4.rc
}
}
CONFIG(debug, debug|release) {

1
runtime/pgAdmin4.rc Normal file
View File

@ -0,0 +1 @@
IDI_ICON1 ICON DISCARDABLE "pgAdmin4.ico"