Subversion Repositories Projects

Rev

Rev 750 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
674 KeyOz 1
# -------------------------------------------------
2
# Project created by QtCreator 2009-07-20T20:04:00
3
# -------------------------------------------------
4
 
5
DEFINES += _TTY_POSIX_
6
include(../Global/Class_SerialPort.pri)
7
 
8
QT += network
9
TARGET = QMK-Scope
10
TEMPLATE = app
11
DESTDIR = ../Binary
12
OBJECTS_DIR = ../Binary/.build/QMK-Scope
13
UI_DIR = ../Binary/.build/QMK-Scope
14
MOC_DIR = ../Binary/.build/QMK-Scope
15
RCC_DIR = ../Binary/.build/QMK-Scope
16
 
17
debug {
18
  DEFINES += _BETA_
19
  LIBS += -lqwt
20
  INCLUDEPATH += $(HOME)/include /usr/include/qwt
21
}
22
 
23
Suse {
24
  LIBS += -lqwt
25
  INCLUDEPATH += $(HOME)/include /usr/include/qwt
26
}
27
 
28
Debian {
29
  LIBS += -lqwt-qt4
30
  INCLUDEPATH += $(HOME)/include /usr/include/qwt-qt4
31
}
32
 
33
Gentoo {
34
  LIBS += -lqwt
35
  INCLUDEPATH += $(HOME)/include /usr/include/qwt5
36
}
37
 
38
OSX {
39
  LIBS += -L/opt/local/lib -lqwt
40
  INCLUDEPATH += /opt/local/include
41
}
42
RESOURCES += QMK-Scope.qrc
43
 
44
SOURCES += main.cpp \
45
    ../Global/Class_Input/Input.cpp \
46
    ../Global/Class_Input/Input_TCP.cpp \
47
    ../Global/Class_Input/Input_TTY.cpp \
48
    ../Global/Class_HandlerMK/HandlerMK.cpp \
49
    ../Global/Class_HandlerIP/HandlerIP.cpp \
50
    Dialogs/dlg_Main.cpp \
51
    Classes/cSettings.cpp
52
HEADERS += Defines.h \
53
    ../Global/Kopter.h \
54
    ../Global/Global.h \
55
    ../Global/Class_Input/Input.h \
56
    ../Global/Class_Input/Input_TCP.h \
57
    ../Global/Class_Input/Input_TTY.h \
58
    ../Global/Class_HandlerMK/HandlerMK.h \
59
    ../Global/Class_HandlerIP/HandlerIP.h \
60
    Dialogs/dlg_Main.h \
61
    Classes/cSettings.h \
62
    TypeDefs.h
63
FORMS += Dialogs/dlg_Main.ui