-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathopenglscene.pro
61 lines (48 loc) · 1.61 KB
/
openglscene.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
######################################################################
# Automatically generated by qmake (2.01a) Thu Jun 19 18:52:29 2008
######################################################################
QT += opengl widgets core
CONFIG += c++11
TEMPLATE = app
TARGET = OpenGLScene
DEPENDPATH += .
INCLUDEPATH += .
# Input
HEADERS += openglscene.h point3d.h model.h \
trackball.h \
gcode/gcode.h \
# gcode/gcoder.h \
# gcode/command.h
SOURCES += main.cpp model.cpp openglscene.cpp \
trackball.cpp \
gcode/gcode.cpp \
# gcode/gcoder.cpp \
# gcode/command.cpp
win32 {
#glew
INCLUDEPATH +="D:/Qt/glew-1.11.0/include"
LIBS += -lglew32 -lopengl32 -L"D:/Qt/glew-1.11.0/lib" -L"D:/Qt/glew-1.11.0/bin" #-lgomp # -lglu32
LIBS += -fopenmp
#freeglut
INCLUDEPATH +="D:/Qt/freeglut/include"
LIBS += -lfreeglut_static -lopengl32 -L"D:/Qt/freeglut/lib/" -L"D:/Qt/freeglut/bin" #-lgomp #-lopengl -lglu32
#glm
INCLUDEPATH +="D:/Qt/glm/include"
#assimp
#INCLUDEPATH +="D:/Qt/assimp/include/assimp"
#LIBS += -L"D:/Qt/assimp/lib/" -L"D:/Qt/assimp/bin/" -lassimp #-lgomp #-lopengl -lglu32
}
macx {
#glew
INCLUDEPATH +="/Users/rob/Qt5.3.1/glew/include"
LIBS += -lglew -L"/Users/rob/Qt5.3.1/glew/lib" -L"/Users/rob/Qt5.3.1/glew/bin" #-lgomp # -lglu32
#LIBS += -fopenmp
#freeglut
#INCLUDEPATH +="/Users/rob/Qt5.3.1/include"
#LIBS += -lfreeglut_static -lopengl32 -L"D:/Qt/freeglut/lib/" -L"D:/Qt/freeglut/bin" #-lgomp #-lopengl -lglu32
#glm
INCLUDEPATH +="/Users/rob/Qt5.3.1/glm/include"
}
linux {
LIBS += -lglut -lglut -lGLU -lGL
}