src/gui/egl/egl.pri
changeset 0 1918ee327afb
child 3 41300fa6a67c
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 HEADERS += \
       
     2     egl/qegl_p.h \
       
     3     egl/qeglproperties_p.h
       
     4 
       
     5 SOURCES += \
       
     6     egl/qegl.cpp \
       
     7     egl/qeglproperties.cpp
       
     8 
       
     9 contains(QT_CONFIG, wince*): SOURCES += egl/qegl_wince.cpp
       
    10 
       
    11 unix {
       
    12     embedded {
       
    13         SOURCES += egl/qegl_qws.cpp
       
    14     } else {
       
    15         symbian {
       
    16             SOURCES += egl/qegl_symbian.cpp
       
    17         } else {
       
    18             SOURCES += egl/qegl_x11.cpp
       
    19         }
       
    20     }
       
    21 }
       
    22 
       
    23 for(p, QMAKE_LIBDIR_EGL) {
       
    24     exists($$p):LIBS_PRIVATE += -L$$p
       
    25 }
       
    26 
       
    27 !isEmpty(QMAKE_INCDIR_EGL): INCLUDEPATH += $$QMAKE_INCDIR_EGL
       
    28 !isEmpty(QMAKE_LIBS_EGL): LIBS_PRIVATE += $$QMAKE_LIBS_EGL
       
    29 !isEmpty(QMAKE_LFLAGS_EGL): LIBS += $$QMAKE_LFLAGS_EGL