| 4 |
|
# |
| 5 |
|
#------------------------------------------------- |
| 6 |
|
|
| 7 |
< |
QT += core gui |
| 7 |
> |
QT += widgets |
| 8 |
|
QT += network #network communication |
| 9 |
|
QT += script #for json parse |
| 10 |
|
|
| 11 |
+ |
INCLUDEPATH += $$[QT_INSTALL_HEADERS]/QtZlib |
| 12 |
|
INCLUDEPATH += ./libs |
| 13 |
|
INCLUDEPATH += ./packageWizard |
| 14 |
|
INCLUDEPATH += ./soundWizard |
| 15 |
|
|
| 16 |
+ |
macx { |
| 17 |
+ |
LIBS += -lz # for mac support zipping (thanks edt!) |
| 18 |
+ |
ICON = vago_icon.icns # mac os icon |
| 19 |
+ |
} |
| 20 |
+ |
|
| 21 |
+ |
win32 { |
| 22 |
+ |
RC_FILE = icon_resource.rc #for windows explorer icon |
| 23 |
+ |
} |
| 24 |
+ |
|
| 25 |
|
TARGET = Vago |
| 26 |
|
TEMPLATE = app |
| 17 |
– |
RC_FILE = icon_resource.rc #for windows explorer icon |
| 27 |
|
|
| 28 |
|
SOURCES += \ |
| 29 |
|
util.cpp \ |