-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstageController.pro
More file actions
60 lines (48 loc) · 1.36 KB
/
stageController.pro
File metadata and controls
60 lines (48 loc) · 1.36 KB
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
#-------------------------------------------------
#
# Project created by QtCreator 2014-09-18T19:38:17
#
#-------------------------------------------------
QT += core gui
CONFIG += c++11
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = stageController
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
stageController.cpp \
usefulFunctions.cpp \
GlobalVariables.cpp \
Figures/line.cpp \
Figures/polygon.cpp \
Figures/rectangle.cpp \
Figures/spiral.cpp \
Figures/surfaceRec.cpp \
pages/firstpage.cpp \
pages/secondpage.cpp \
pages/thirdpage.cpp
HEADERS += mainwindow.h \
stageController.h \
usefulFunctions.h \
Header.h \
GlobalVariables.h \
Figures/figures.h \
Figures/line.h \
Figures/polygon.h \
Figures/rectangle.h \
Figures/spiral.h \
pages/firstpage.h \
pages/secondpage.h \
pages/thirdpage.h
FORMS += mainwindow.ui \
pages/firstpage.ui \
pages/secondpage.ui \
pages/thirdpage.ui
INCLUDEPATH += $$PWD/Eigen_Linear_Algebra_Library\
win32:CONFIG(release, debug|release): LIBS += -L$$PWD/PI_stuff/release/ -lpi_pi_gcs2
else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/PI_stuff/debug/ -lpi_pi_gcs2
else:unix: LIBS += -L$$PWD/PI_stuff/ -lpi_pi_gcs2
INCLUDEPATH += $$PWD/PI_stuff
DEPENDPATH += $$PWD/PI_stuff
RESOURCES += \
Resources.qrc