-
Notifications
You must be signed in to change notification settings - Fork 0
/
qtnqc.pro
76 lines (72 loc) · 1.87 KB
/
qtnqc.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
purge.commands = rm -f *~
TEMPLATE = app
LANGUAGE = C++
CONFIG += qt warn_on thread debug
QMAKE_DEL_FILE += -r
QMAKE_CLEAN += qtnqc qtnqc.app
QMAKE_EXTRA_UNIX_TARGETS = purge
INCPATH += /usr/X11R6/include /usr/local/include
# Solaris 10 and CC.
LIBS += -L/usr/local/lib -lcurl -ldl -lsocket -lnsl -lz \
-R/usr/local/lib -lcurl -ldl -lsocket -lnsl -lz
QMAKE_CFLAGS_RELEASE -= -O
QMAKE_CXXFLAGS_RELEASE -= -O2
# FreeBSD 5.5 and g++.
# LIBS += -L/usr/local/lib -lcurl
# QMAKE_CXXFLAGS -= -O
# QMAKE_CXXFLAGS += -O0 -fno-inline
HEADERS = break.h\
constant.h\
continue.h\
diagram_writer.h\
dragobject.h\
editor.h\
file_class.h\
function.h\
function_window.h\
gate.h\
qtnqc_download_thread.h\
qtnqc_limits.h\
list_objects.h\
loop.h\
object.h\
options_reader.h\
qtnqc_main.h\
rename_window.h\
return.h\
search_thread.h\
settings.h\
settings_window.h\
subroutine.h\
task.h\
tools_window.h\
types.h\
variable.h\
wire.h
SOURCES = break.cc\
constant.cc\
continue.cc\
diagram_writer.cc\
dragobject.cc\
editor.cc\
function.cc\
function_window.cc\
gate.cc\
list_objects.cc\
loop.cc\
object.cc\
options_reader.cc\
qtnqc_download_thread.cc\
qtnqc_main.cc\
rename_window.cc\
return.cc\
search_thread.cc\
settings.cc\
settings_window.cc\
subroutine.cc\
task.cc\
tools_window.cc\
variable.cc\
wire.cc
TARGET = qtnqc
PROJECTNAME = QtNQC