blob: 75a3d912a1f1782fda05433fe8b4ca3091f071cd (
plain)
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
|
HEADERS += \
egl/qegl_p.h \
egl/qeglproperties_p.h
SOURCES += \
egl/qegl.cpp \
egl/qeglproperties.cpp
contains(QT_CONFIG, wince*): SOURCES += egl/qegl_wince.cpp
unix {
embedded {
SOURCES += egl/qegl_qws.cpp
} else {
symbian {
SOURCES += egl/qegl_symbian.cpp
} else {
SOURCES += egl/qegl_x11.cpp
}
}
}
for(p, QMAKE_LIBDIR_EGL) {
exists($$p):LIBS += -L$$p
}
!isEmpty(QMAKE_INCDIR_EGL): INCLUDEPATH += $$QMAKE_INCDIR_EGL
!isEmpty(QMAKE_LIBS_EGL): LIBS_PRIVATE += $$QMAKE_LIBS_EGL
|