Browse Source

angle: don't use the separate angle builds. fixes #677

We have been having a lot of issues on windows Since W10 creator update.
That update broken angle display which is the default used rendering method for that platform.

Currently PMP cmakefiles default to downloading separate angle built dlls that are built from our repo.

Unfortunately angle cannot be built anymore from our CI because it doesn't build with VS2015.

It Also looks not very sane to build angle separately than Qt as Qt already builds those DLLs.

This commit allows to use Qt build angle DLL which will make it consistent with our Qt version
Lionel CHAZALLON 7 years ago
parent
commit
94ff609846
1 changed files with 1 additions and 1 deletions
  1. 1 1
      CMakeModules/DependencyConfiguration.cmake

+ 1 - 1
CMakeModules/DependencyConfiguration.cmake

@@ -37,7 +37,7 @@ if(WIN32)
     ARCHSTR windows-x86_x64
   )
 
-  option(ENABLE_ANGLE_DEP "Enable downloading and deployment of separate ANGLE deps" ON)
+  option(ENABLE_ANGLE_DEP "Enable downloading and deployment of separate ANGLE deps" OFF)
   if(ENABLE_ANGLE_DEP)
     message(STATUS "Downloading separate ANGLE deps...")
     foreach(angle_file libEGL.dll libGLESv2.dll d3dcompiler_47.dll)