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