From 1e6329acb8787f1ecbf85be8b4d714c6bc73ee61 Mon Sep 17 00:00:00 2001
From: Guillaume Pasero <guillaume.pasero@c-s.fr>
Date: Mon, 16 Apr 2018 12:00:48 +0200
Subject: [PATCH] PKG: missing dll on windows package

---
 Packaging/prepare_file_list.cmake | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Packaging/prepare_file_list.cmake b/Packaging/prepare_file_list.cmake
index 08d639ad1a..5b3284a620 100644
--- a/Packaging/prepare_file_list.cmake
+++ b/Packaging/prepare_file_list.cmake
@@ -86,9 +86,11 @@ function(prepare_file_list file_list_result)
   
   # special case for msvc: ucrtbase.dll must be explicitly vetted.
   # for proj.dll, see Mantis-1424
+  # libEGL needed by Qt 5 at runtime
   if(MSVC)
     list(APPEND file_list "ucrtbase.dll")
     list(APPEND file_list "proj.dll")
+    list(APPEND file_list "libEGL.dll")
   endif()
 
   set(${file_list_result} ${file_list} PARENT_SCOPE)
-- 
GitLab