summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CMakeScripts/InstallMSYS2.cmake2
-rwxr-xr-xmsys2installdeps.sh3
2 files changed, 3 insertions, 2 deletions
diff --git a/CMakeScripts/InstallMSYS2.cmake b/CMakeScripts/InstallMSYS2.cmake
index 495e8e1e6..d3e63c3c9 100644
--- a/CMakeScripts/InstallMSYS2.cmake
+++ b/CMakeScripts/InstallMSYS2.cmake
@@ -225,7 +225,7 @@ if(WIN32)
set(site_packages "lib/python2.7/site-packages")
# Python packages installed via pacman
- set(packages "python2-lxml" "python2-numpy")
+ set(packages "python2-lxml" "python2-numpy" "python2-pillow")
foreach(package ${packages})
list_files_pacman(${package} paths)
install_list(FILES ${paths}
diff --git a/msys2installdeps.sh b/msys2installdeps.sh
index 7b339fdd6..fd46e455c 100755
--- a/msys2installdeps.sh
+++ b/msys2installdeps.sh
@@ -78,7 +78,8 @@ eval pacman -S --needed --noconfirm \
$ARCH-python2 \
$ARCH-python2-pip \
$ARCH-python2-lxml \
-$ARCH-python2-numpy
+$ARCH-python2-numpy \
+$ARCH-python2-pillow
for arch in $(eval echo $ARCH); do
case ${arch} in
mingw-w64-i686)