-
Notifications
You must be signed in to change notification settings - Fork 1
/
SagemMorphoUI.pro
65 lines (58 loc) · 1.58 KB
/
SagemMorphoUI.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
QT += widgets serialport
requires(qtConfig(combobox))
TARGET = SagemMorphoUI
TEMPLATE = app
SOURCES += \
Morpho/Ilv_crc.c \
Morpho/Ilv_errors.c \
Morpho/morpho_add_base_record.c \
Morpho/morpho_asynchronous_message.c \
Morpho/morpho_cancel.c \
Morpho/morpho_configure_uart.c \
Morpho/morpho_create_base.c \
Morpho/morpho_destroy_base.c \
Morpho/morpho_erase_base.c \
Morpho/morpho_get_base_config.c \
Morpho/morpho_get_data.c \
Morpho/morpho_get_descriptor.c \
Morpho/morpho_identify.c \
Morpho/morpho_protocol.c \
main.cpp \
mainwindow.cpp \
sagemmorpho.cpp \
settingsdialog.cpp \
console.cpp \
support/style/CustomStyle.cpp
HEADERS += \
Morpho/Ilv_crc.h \
Morpho/Ilv_definitions.h \
Morpho/Ilv_errors.h \
Morpho/morpho_add_base_record.h \
Morpho/morpho_asynchronous_message.h \
Morpho/morpho_cancel.h \
Morpho/morpho_configure_uart.h \
Morpho/morpho_create_base.h \
Morpho/morpho_definitions.h \
Morpho/morpho_destroy_base.h \
Morpho/morpho_erase_base.h \
Morpho/morpho_get_base_config.h \
Morpho/morpho_get_data.h \
Morpho/morpho_get_descriptor.h \
Morpho/morpho_identify.h \
Morpho/morpho_protocol.h \
mainwindow.h \
sagemmorpho.h \
settingsdialog.h \
console.h \
support/style/CustomStyle.h
FORMS += \
mainwindow.ui \
sagemmorpho.ui \
settingsdialog.ui
RESOURCES += \
morpho.qrc \
resources/resource.qrc
RC_FILE += \
resources/resource.rc
target.path = $$[QT_INSTALL_EXAMPLES]/serialport/terminal
INSTALLS += target