Home | History | Annotate | Download | only in wrapper
      1 # EGL Wrapper
      2 
      3 set(EGLWRAPPER_SRCS
      4 	eglwDefs.cpp
      5 	eglwDefs.hpp
      6 	eglwEnums.hpp
      7 	eglwFunctions.hpp
      8 	eglwFunctions.cpp
      9 	eglwLibrary.hpp
     10 	eglwLibrary.cpp
     11 	eglwWrapper.hpp
     12 	eglwWrapper.cpp
     13 	eglw.h
     14 	)
     15 
     16 set(EGLWRAPPER_LIBS
     17 	debase
     18 	deutil
     19 	decpp
     20 	${DEQP_EGL_LIBRARIES}
     21 	)
     22 
     23 add_library(eglwrapper STATIC ${EGLWRAPPER_SRCS})
     24 target_link_libraries(eglwrapper ${EGLWRAPPER_LIBS})
     25