diff options
author | Forkk <forkk@forkk.net> | 2014-05-01 13:48:09 -0500 |
---|---|---|
committer | Forkk <forkk@forkk.net> | 2014-05-01 13:48:09 -0500 |
commit | b3f717c582c6d21fbfc0d35cbccf79f8021e6f7f (patch) | |
tree | aef65a6692b675e1bc59348b18e3363e27ecfd5e | |
parent | 3d8f6ac6406d4b4fa8b34f609aefaea26c9adc11 (diff) | |
download | MultiMC-b3f717c582c6d21fbfc0d35cbccf79f8021e6f7f.tar MultiMC-b3f717c582c6d21fbfc0d35cbccf79f8021e6f7f.tar.gz MultiMC-b3f717c582c6d21fbfc0d35cbccf79f8021e6f7f.tar.lz MultiMC-b3f717c582c6d21fbfc0d35cbccf79f8021e6f7f.tar.xz MultiMC-b3f717c582c6d21fbfc0d35cbccf79f8021e6f7f.zip |
Include ICU in distributed builds.
-rw-r--r-- | install_prereqs.cmake.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/install_prereqs.cmake.in b/install_prereqs.cmake.in index 4ed7876b..6b50fb76 100644 --- a/install_prereqs.cmake.in +++ b/install_prereqs.cmake.in @@ -6,6 +6,9 @@ function(gp_resolved_file_type_override resolved_file type_var) elseif(resolved_file MATCHES "^/usr/lib(.+)?/libxcb") message("resolving ${resolved_file} as other") set(${type_var} other PARENT_SCOPE) + elseif(resolved_file MATCHES "^/usr/lib(.+)?/libicu") + message("resolving ${resolved_file} as other") + set(${type_var} other PARENT_SCOPE) endif() endfunction() |