-
Notifications
You must be signed in to change notification settings - Fork 2
/
EasyGrblSetup.pro
35 lines (27 loc) · 905 Bytes
/
EasyGrblSetup.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
#-------------------------------------------------
#
# Project created by QtCreator 2017-12-19T20:37:25
#
#-------------------------------------------------
QT += core gui
QT += serialport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = EasyGrblSetup
TEMPLATE = app
CONFIG += c++11
SOURCES += source/main.cpp \
source/EasyGrblSetup.cpp \
source/ConfigWatcher.cpp \
source/GrblCommander.cpp \
source/JogController.cpp \
source/AxesVisibility.cpp
HEADERS += source/EasyGrblSetup.h \
source/qt_before_5_7_0.h \
source/QLabelClickable.h \
source/ConfigWatcher.h \
source/GrblCommander.h \
source/JogController.h \
source/AxesVisibility.h
FORMS += source/EasyGrblSetup.ui
TRANSLATIONS += locale/EasyGrblSetup_fr.ts \
locale/EasyGrblSetup_de.ts