lin
2025-08-14 dae8bad597b6607a449b32bf76c523423f7720ed
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# glu - Generic OpenGL (ES 2.0/3.0) test utilities
 
if (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/simplereference)
   add_subdirectory(simplereference)
endif ()
 
add_subdirectory(wrapper)
 
set(GLUTIL_SRCS
   gluCallLogWrapper.hpp
   gluContextInfo.cpp
   gluContextInfo.hpp
   gluDefs.cpp
   gluDefs.hpp
   gluDrawUtil.cpp
   gluDrawUtil.hpp
   gluFboRenderContext.cpp
   gluFboRenderContext.hpp
   gluPixelTransfer.cpp
   gluPixelTransfer.hpp
   gluProgramInterfaceQuery.cpp
   gluProgramInterfaceQuery.hpp
   gluRenderConfig.cpp
   gluRenderConfig.hpp
   gluRenderContext.cpp
   gluRenderContext.hpp
   gluShaderProgram.cpp
   gluShaderProgram.hpp
   gluShaderUtil.cpp
   gluShaderUtil.hpp
   gluStateReset.cpp
   gluStateReset.hpp
   gluTexture.cpp
   gluTexture.hpp
   gluTextureUtil.cpp
   gluTextureUtil.hpp
   gluTextureTestUtil.cpp
   gluTextureTestUtil.hpp
   gluVarType.cpp
   gluVarType.hpp
   gluVarTypeUtil.cpp
   gluVarTypeUtil.hpp
   gluStrUtil.cpp
   gluStrUtil.hpp
   gluCallLogWrapper.cpp
   gluCallLogWrapper.hpp
   gluObjectWrapper.cpp
   gluObjectWrapper.hpp
   gluContextFactory.hpp
   gluContextFactory.cpp
   gluDummyRenderContext.cpp
   gluDummyRenderContext.hpp
   gluPlatform.cpp
   gluPlatform.hpp
   gluShaderLibrary.cpp
   gluShaderLibrary.hpp
   )
 
set(GLUTIL_LIBS
   tcutil
   glwrapper
   )
 
PCH(GLUTIL_SRCS ../pch.cpp)
 
add_library(glutil STATIC ${GLUTIL_SRCS})
target_link_libraries(glutil ${GLUTIL_LIBS})