source: trunk/src/opengl/opengl.pro@ 846

Last change on this file since 846 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 4.7 KB
Line 
1TARGET = QtOpenGL
2QPRO_PWD = $$PWD
3QT = core gui
4DEFINES += QT_BUILD_OPENGL_LIB
5DEFINES += QT_NO_USING_NAMESPACE
6win32-msvc*|win32-icc:QMAKE_LFLAGS += /BASE:0x63000000
7solaris-cc*:QMAKE_CXXFLAGS_RELEASE -= -O2
8irix-cc*:QMAKE_CXXFLAGS += -no_prelink -ptused
9
10unix:QMAKE_PKGCONFIG_REQUIRES = QtCore QtGui
11
12include(../qbase.pri)
13
14!win32:!embedded:!mac:!symbian:CONFIG += x11
15contains(QT_CONFIG, opengl):CONFIG += opengl
16contains(QT_CONFIG, opengles1):CONFIG += opengles1
17contains(QT_CONFIG, opengles2):CONFIG += opengles2
18contains(QT_CONFIG, egl):CONFIG += egl
19
20HEADERS += qgl.h \
21 qgl_p.h \
22 qglcolormap.h \
23 qglpixelbuffer.h \
24 qglpixelbuffer_p.h \
25 qglframebufferobject.h \
26 qglframebufferobject_p.h \
27 qglextensions_p.h \
28 qglpaintdevice_p.h \
29 qglbuffer.h \
30
31
32SOURCES += qgl.cpp \
33 qglcolormap.cpp \
34 qglpixelbuffer.cpp \
35 qglframebufferobject.cpp \
36 qglextensions.cpp \
37 qglpaintdevice.cpp \
38 qglbuffer.cpp \
39
40
41!contains(QT_CONFIG, opengles2) {
42 HEADERS += qpaintengine_opengl_p.h
43 SOURCES += qpaintengine_opengl.cpp
44}
45
46!contains(QT_CONFIG, opengles1) {
47 HEADERS += qglshaderprogram.h \
48 qglpixmapfilter_p.h \
49 qgraphicsshadereffect_p.h \
50 qgraphicssystem_gl_p.h \
51 qwindowsurface_gl_p.h \
52 qpixmapdata_gl_p.h \
53 gl2paintengineex/qglgradientcache_p.h \
54 gl2paintengineex/qglengineshadermanager_p.h \
55 gl2paintengineex/qgl2pexvertexarray_p.h \
56 gl2paintengineex/qpaintengineex_opengl2_p.h \
57 gl2paintengineex/qglengineshadersource_p.h \
58 gl2paintengineex/qglcustomshaderstage_p.h \
59 gl2paintengineex/qtriangulatingstroker_p.h \
60 gl2paintengineex/qtriangulator_p.h \
61 gl2paintengineex/qtextureglyphcache_gl_p.h
62
63 SOURCES += qglshaderprogram.cpp \
64 qglpixmapfilter.cpp \
65 qgraphicsshadereffect.cpp \
66 qgraphicssystem_gl.cpp \
67 qwindowsurface_gl.cpp \