diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-09-08 22:09:08 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-09-08 22:09:08 +0200 |
commit | 51070a13f711e53835f9aadc220c8177440590d9 (patch) | |
tree | 998e872613ef6a3956c66db131e65cbbd2b4ad05 /application | |
parent | 36dbf1fb4353f3690079f557af09827853331722 (diff) | |
download | MultiMC-51070a13f711e53835f9aadc220c8177440590d9.tar MultiMC-51070a13f711e53835f9aadc220c8177440590d9.tar.gz MultiMC-51070a13f711e53835f9aadc220c8177440590d9.tar.lz MultiMC-51070a13f711e53835f9aadc220c8177440590d9.tar.xz MultiMC-51070a13f711e53835f9aadc220c8177440590d9.zip |
GH-1231 add libpng to packages
Diffstat (limited to 'application')
-rw-r--r-- | application/install_prereqs.cmake.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/application/install_prereqs.cmake.in b/application/install_prereqs.cmake.in index db964c90..11c8bbc8 100644 --- a/application/install_prereqs.cmake.in +++ b/application/install_prereqs.cmake.in @@ -11,6 +11,9 @@ function(gp_resolved_file_type_override resolved_file type_var) elseif(resolved_file MATCHES "^/usr/lib(.+)?/libicu") message("resolving ${resolved_file} as other") set(${type_var} other PARENT_SCOPE) + elseif(resolved_file MATCHES "^/usr/lib(.+)?/libpng") + message("resolving ${resolved_file} as other") + set(${type_var} other PARENT_SCOPE) elseif((resolved_file MATCHES "^/usr/lib(.+)?/libstdc\\+\\+") AND (UNIX AND NOT APPLE)) message("resolving ${resolved_file} as other") set(${type_var} other PARENT_SCOPE) |