-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathRepRaptor.pro
75 lines (60 loc) · 1.39 KB
/
RepRaptor.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
#-------------------------------------------------
#
# Project created by QtCreator 2015-02-26T16:14:20
# Licenced on terms of GNU GPL v2 licence
#
#-------------------------------------------------
QT += core gui serialport
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = RepRaptor
TEMPLATE = app
CONFIG += static
unix {
#VARIABLES
isEmpty(PREFIX) {
PREFIX = /usr
}
BINDIR = $$PREFIX/bin
DATADIR =$$PREFIX/share
DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
#MAKE INSTALL
INSTALLS += target desktop icon
target.path =$$BINDIR
desktop.path = $$DATADIR/applications
desktop.files += $${TARGET}.desktop
icon.path = $$DATADIR/icons
icon.files += icons/repraptor.png
}
SOURCES += main.cpp\
mainwindow.cpp \
settingswindow.cpp \
aboutwindow.cpp \
errorwindow.cpp \
erroricon.cpp \
sdwindow.cpp \
eepromwindow.cpp \
parser.cpp \
sender.cpp
HEADERS += mainwindow.h \
settingswindow.h \
aboutwindow.h \
errorwindow.h \
erroricon.h \
sdwindow.h \
repraptor.h \
eepromwindow.h \
parser.h \
sender.h
FORMS += mainwindow.ui \
settingswindow.ui \
aboutwindow.ui \
errorwindow.ui \
sdwindow.ui \
eepromwindow.ui
RESOURCES += \
graphics.qrc
DISTFILES += \
LICENCE \
README.md \
RepRaptor.desktop \
.travis.yml