소스 검색

[build] CMake: pass -sFULL_ES3 instead of -sFULL_ES3=1 (#4090)

* Allow ES3 in LibraryConfigurations.cmake

* Put FULL_ES3 as linker option

* Remove =1
manuel5975p 1 년 전
부모
커밋
5ba18575de
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/CMakeLists.txt

+ 1 - 1
src/CMakeLists.txt

@@ -71,7 +71,7 @@ endif()
 if (${PLATFORM} MATCHES "Web")
     target_link_options(raylib PUBLIC "-sUSE_GLFW=3")
     if(${GRAPHICS} MATCHES "GRAPHICS_API_OPENGL_ES3")
-        target_link_options(raylib PUBLIC "-sFULL_ES3=1")
+        target_link_options(raylib PUBLIC "-sFULL_ES3")
     endif()
 endif()