Ver Fonte

cmake: testshader needs -sLEGACY_GL_EMULATION on Emscripten

Anonymous Maarten há 3 anos atrás
pai
commit
a71e558d85
1 ficheiros alterados com 3 adições e 0 exclusões
  1. 3 0
      test/CMakeLists.txt

+ 3 - 0
test/CMakeLists.txt

@@ -235,6 +235,9 @@ if(OPENGL_FOUND)
         target_link_libraries(testgl2 ${OPENGL_gl_LIBRARY})
     endif()
 endif()
+if(EMSCRIPTEN)
+    target_link_libraries(testshader -sLEGACY_GL_EMULATION)
+endif()
 
 file(GLOB RESOURCE_FILES *.bmp *.wav *.hex moose.dat utf8.txt)
 file(COPY ${RESOURCE_FILES} DESTINATION ${CMAKE_CURRENT_BINARY_DIR})