-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQJsonify.pro
57 lines (39 loc) · 1.25 KB
/
QJsonify.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#-------------------------------------------------
#
# Project created by QtCreator 2023-10-15T11:05:04
#
#-------------------------------------------------
QT += core widgets printsupport
CONFIG += qt
CONFIG += static
TARGET = QJsonify
TEMPLATE = app
ICON = qjsonify.icns
SOURCES += main.cpp\
mainwindow.cpp\
about.cpp
HEADERS += mainwindow.h\
about.h
macx {
LIBS += -framework Cocoa
QT += macextras
OBJECTIVE_SOURCES += lib/cocoainitializer/cocoainitializer.mm
OBJECTIVE_HEADERS += lib/cocoainitializer/cocoainitializer.h
}
win32 {
QT += winextras
# For easy results, use qtcreator. Don't try doing this on the command line unless you know what you are doing.
# You may need to change this path to your installed DDK/Microsoft Windows SDK as well as 32/64 bit
#INCLUDEPATH += "C:/WinDDK/7600.16385.1/inc/crt" \
# "C:/WinDDK/7600.16385.1/inc/api" \
# "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/utility" \
# "C:/Program Files (x86)/Microsoft Visual Studio 12.0/VC/include/cliext/utility"
#LIBS += -L"C:/WinDDK/7600.16385.1/lib/Crt/i386"
}
FORMS += mainwindow.ui\
about.ui
RESOURCES += \
main.qrc
OTHER_FILES += \
LICENSE \
menu_defs.json