• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# EGL Wrapper
2
3set(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
16set(EGLWRAPPER_LIBS
17	debase
18	deutil
19	decpp
20	${DEQP_EGL_LIBRARIES}
21	)
22
23add_library(eglwrapper STATIC ${EGLWRAPPER_SRCS})
24target_link_libraries(eglwrapper ${EGLWRAPPER_LIBS})
25