Home | History | Annotate | Download | only in wrapper
      1 # GL Wrapper
      2 
      3 set(GLWRAPPER_SRCS
      4 	glw.h
      5 	glwDefs.cpp
      6 	glwDefs.hpp
      7 	glwEnums.hpp
      8 	glwFunctionLoader.hpp
      9 	glwFunctions.hpp
     10 	glwFunctions.cpp
     11 	glwInitES20Direct.hpp
     12 	glwInitES20Direct.cpp
     13 	glwInitES30Direct.hpp
     14 	glwInitES30Direct.cpp
     15 	glwInitFunctions.hpp
     16 	glwInitFunctions.cpp
     17 	glwWrapper.hpp
     18 	glwWrapper.cpp
     19 	)
     20 
     21 set(GLWRAPPER_LIBS
     22 	debase
     23 	deutil
     24 	decpp
     25 	${DEQP_GLES2_LIBRARIES}
     26 	${DEQP_GLES3_LIBRARIES}
     27 	)
     28 
     29 add_library(glwrapper STATIC ${GLWRAPPER_SRCS})
     30 target_link_libraries(glwrapper ${GLWRAPPER_LIBS})
     31