1 | TEMPLATE = app |
---|
2 | |
---|
3 | QT += xml opengl network |
---|
4 | |
---|
5 | unix { |
---|
6 | DEFINES += UNIX |
---|
7 | INCLUDEPATH += ${HOME}/usr/include |
---|
8 | LIBS += -L${HOME}/usr/lib |
---|
9 | } |
---|
10 | |
---|
11 | TARGET = projdesigner |
---|
12 | |
---|
13 | LIBS += -lglut |
---|
14 | LIBS += -L../projdesignerplugins/defaultplugin -lprojdesigner_default |
---|
15 | |
---|
16 | INCLUDEPATH += .. |
---|
17 | |
---|
18 | DEPENDPATH += . \ |
---|
19 | include \ |
---|
20 | src \ |
---|
21 | include/gui \ |
---|
22 | include/math \ |
---|
23 | include/screen \ |
---|
24 | src/gui \ |
---|
25 | src/math \ |
---|
26 | src/screen |
---|
27 | |
---|
28 | INCLUDEPATH += . \ |
---|
29 | include \ |
---|
30 | include/math \ |
---|
31 | include/gui \ |
---|
32 | include/screen |
---|
33 | |
---|
34 | HEADERS += include/gui/plugindialog.h \ |
---|
35 | include/interfaces.h \ |
---|
36 | include/Channel.h \ |
---|
37 | include/Exporter.h \ |
---|
38 | include/Frustum.h \ |
---|
39 | include/GUIControler.h \ |
---|
40 | include/Version.h \ |
---|
41 | include/ProjectionModel.h \ |
---|
42 | include/RSync.h \ |
---|
43 | include/Scene.h \ |
---|
44 | include/Screen.h \ |
---|
45 | include/Warp.h \ |
---|
46 | include/gui/Defines.h \ |
---|
47 | include/gui/QGLViewerWidget.h \ |
---|
48 | include/gui/QChannelManagerWidget.h \ |
---|
49 | include/gui/QChannelWidget.h \ |
---|
50 | include/gui/QClientWindow.h \ |
---|
51 | include/gui/QDesignViewWidget.h \ |
---|
52 | include/gui/QDesignViewWindow.h \ |
---|
53 | include/gui/QPanelWidget.h \ |
---|
54 | include/gui/QPreferenceDialog.h \ |
---|
55 | include/gui/QProjectionMatrixWidget.h \ |
---|
56 | include/gui/QProjectorWindow.h \ |
---|
57 | include/gui/QSceneViewerWindow.h \ |
---|
58 | include/gui/QSceneWidget.h \ |
---|
59 | include/gui/QScreenWidget.h \ |
---|
60 | include/gui/QTransformMatrixWidget.h \ |
---|
61 | include/math/ProjectionMatrix.h \ |
---|
62 | include/math/TransformMatrix.h \ |
---|
63 | include/screen/ScreenBox.h \ |
---|
64 | include/screen/ScreenDome.h \ |
---|
65 | include/screen/ScreenModel.h \ |
---|
66 | include/screen/ScreenPlane.h \ |
---|
67 | include/screen/ScreenShape.h |
---|
68 | FORMS += include/gui/qchannelmanagerwidget.ui \ |
---|
69 | include/gui/qchannelwidget.ui \ |
---|
70 | include/gui/qclientwindow.ui \ |
---|
71 | include/gui/qdesignviewwindow.ui \ |
---|
72 | include/gui/qpanelwidget.ui \ |
---|
73 | include/gui/qpreferencedialog.ui \ |
---|
74 | include/gui/qprojectionmatrixwidget.ui \ |
---|
75 | include/gui/qscenewidget.ui \ |
---|
76 | include/gui/qscreenwidget.ui \ |
---|
77 | include/gui/qsetupdialog.ui \ |
---|
78 | include/gui/qtransformmatrixwidget.ui |
---|
79 | |
---|
80 | SOURCES += src/gui/plugindialog.cpp \ |
---|
81 | main.cpp \ |
---|
82 | src/Channel.cpp \ |
---|
83 | src/Exporter.cpp \ |
---|
84 | src/Frustum.cpp \ |
---|
85 | src/GUIControler.cpp \ |
---|
86 | src/Version.cpp \ |
---|
87 | src/ProjectionModel.cpp \ |
---|
88 | src/RSync.cpp \ |
---|
89 | src/Scene.cpp \ |
---|
90 | src/Screen.cpp \ |
---|
91 | src/Warp.cpp \ |
---|
92 | src/gui/Defines.cpp \ |
---|
93 | src/gui/QGLViewerWidget.cpp \ |
---|
94 | src/gui/QChannelManagerWidget.cpp \ |
---|
95 | src/gui/QChannelWidget.cpp \ |
---|
96 | src/gui/QClientWindow.cpp \ |
---|
97 | src/gui/QDesignViewWidget.cpp \ |
---|
98 | src/gui/QDesignViewWindow.cpp \ |
---|
99 | src/gui/QPanelWidget.cpp \ |
---|
100 | src/gui/QPreferenceDialog.cpp \ |
---|
101 | src/gui/QProjectionMatrixWidget.cpp \ |
---|
102 | src/gui/QProjectorWindow.cpp \ |
---|
103 | src/gui/QSceneViewerWindow.cpp \ |
---|
104 | src/gui/QSceneWidget.cpp \ |
---|
105 | src/gui/QScreenWidget.cpp \ |
---|
106 | src/gui/QTransformMatrixWidget.cpp \ |
---|
107 | src/math/ProjectionMatrix.cpp \ |
---|
108 | src/math/TransformMatrix.cpp \ |
---|
109 | src/screen/ScreenBox.cpp \ |
---|
110 | src/screen/ScreenDome.cpp \ |
---|
111 | src/screen/ScreenModel.cpp \ |
---|
112 | src/screen/ScreenPlane.cpp \ |
---|
113 | src/screen/ScreenShape.cpp |
---|
114 | |
---|
115 | DESTDIR=../bin/ |
---|
116 | |
---|
117 | target.path = /usr/local/bin/ |
---|
118 | INSTALLS += target |
---|
119 | |
---|
120 | |
---|
121 | #Resource file(s) |
---|
122 | RESOURCES += ./projdesigner.qrc |
---|