• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set (MODULE_NAME GLES)
2
3set (${MODULE_NAME}_SOURCES
4        main.cpp
5        test_buffers.cpp
6        test_images_2D.cpp
7        test_images_3D.cpp
8        test_renderbuffer.cpp
9        test_images_2D_info.cpp
10        test_images_3D_info.cpp
11        test_renderbuffer_info.cpp
12        test_fence_sync.cpp
13        helpers.cpp
14        setup_egl.cpp
15        ../../test_common/gles/helpers.cpp
16    )
17
18if(ANDROID)
19    list(APPEND CLConform_LIBRARIES GLESv2)
20elseif(WIN32)
21    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DGLES3")
22    list(APPEND CLConform_LIBRARIES libEGL libGLESv2 )
23endif(ANDROID)
24
25include(../CMakeCommon.txt)
26