RepRaptor/RepRaptor.pro
2015-03-09 19:12:23 +03:00

75 lines
1.4 KiB
Prolog

#-------------------------------------------------
#
# Project created by QtCreator 2015-02-26T16:14:20
# Licenced on terms of GNU GPL v2 licence
#
#-------------------------------------------------
QT += core gui serialport concurrent
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = RepRaptor
TEMPLATE = app
CONFIG += static
unix
{
#VARIABLES
isEmpty(PREFIX)
{
PREFIX = /usr/local
}
BINDIR = $$PREFIX/bin
DATADIR =$$PREFIX/share
DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
#MAKE INSTALL
INSTALLS += target desktop service iconxpm icon26 icon48 icon64
target.path =$$BINDIR
desktop.path = $$DATADIR/applications
desktop.files += $${TARGET}.desktop
icon.path = $$DATADIR/icons
icon.files += icons/icon.png
}
SOURCES += main.cpp\
mainwindow.cpp \
settingswindow.cpp \
aboutwindow.cpp \
errorwindow.cpp \
erroricon.cpp \
sdwindow.cpp \
eepromwindow.cpp \
parser.cpp
HEADERS += mainwindow.h \
settingswindow.h \
aboutwindow.h \
errorwindow.h \
erroricon.h \
sdwindow.h \
repraptor.h \
eepromwindow.h \
parser.h
FORMS += mainwindow.ui \
settingswindow.ui \
aboutwindow.ui \
errorwindow.ui \
sdwindow.ui \
eepromwindow.ui
RESOURCES += \
graphics.qrc
DISTFILES += \
LICENCE \
README.md \
RepRaptor.desktop