Home | History | Annotate | Download | only in egl
      1 # EGL utilities
      2 
      3 # GLContextFactory uses glu
      4 include_directories(../opengl)
      5 
      6 set(EGLUTIL_SRCS
      7 	egluCallLogWrapper.cpp
      8 	egluCallLogWrapper.hpp
      9 	egluConfigFilter.cpp
     10 	egluConfigFilter.hpp
     11 	egluConfigInfo.cpp
     12 	egluConfigInfo.hpp
     13 	egluDefs.cpp
     14 	egluDefs.hpp
     15 	egluGLContextFactory.cpp
     16 	egluGLContextFactory.hpp
     17 	egluGLFunctionLoader.cpp
     18 	egluGLFunctionLoader.hpp
     19 	egluHeaderWrapper.cpp
     20 	egluHeaderWrapper.hpp
     21 	egluNativeDisplay.cpp
     22 	egluNativeDisplay.hpp
     23 	egluNativePixmap.cpp
     24 	egluNativePixmap.hpp
     25 	egluNativeWindow.cpp
     26 	egluNativeWindow.hpp
     27 	egluPlatform.cpp
     28 	egluPlatform.hpp
     29 	egluStaticESLibrary.cpp
     30 	egluStaticESLibrary.hpp
     31 	egluStrUtil.cpp
     32 	egluStrUtil.hpp
     33 	egluUtil.cpp
     34 	egluUtil.hpp
     35 	egluUnique.hpp
     36 	egluUnique.cpp
     37 	tcuEgl.cpp
     38 	tcuEgl.hpp
     39 	)
     40 
     41 add_library(eglutil STATIC ${EGLUTIL_SRCS})
     42 target_link_libraries(eglutil tcutil glutil glwrapper ${DEQP_EGL_LIBRARIES})
     43