1# GL Wrapper 2 3set(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 glwInitES31Direct.hpp 16 glwInitES31Direct.cpp 17 glwInitES32Direct.hpp 18 glwInitES32Direct.cpp 19 glwInitFunctions.hpp 20 glwInitFunctions.cpp 21 glwWrapper.hpp 22 glwWrapper.cpp 23 ) 24 25set(GLWRAPPER_LIBS 26 debase 27 deutil 28 decpp 29 ${DEQP_GLES2_LIBRARIES} 30 ${DEQP_GLES3_LIBRARIES} 31 ${DEQP_GLES31_LIBRARIES} 32 ${DEQP_GLES32_LIBRARIES} 33 ) 34 35add_library(glwrapper STATIC ${GLWRAPPER_SRCS}) 36target_link_libraries(glwrapper ${GLWRAPPER_LIBS}) 37