From 1bc2fbef11e8920fd6dbd228f6fe2fd0e111f40f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Thu, 21 May 2015 00:28:30 +0200 Subject: GH-794 add libstdc++ to build on linux. hopefully? --- application/install_prereqs.cmake.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'application/install_prereqs.cmake.in') diff --git a/application/install_prereqs.cmake.in b/application/install_prereqs.cmake.in index b8fa3177..db964c90 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(.+)?/libstdc\\+\\+") AND (UNIX AND NOT APPLE)) + message("resolving ${resolved_file} as other") + set(${type_var} other PARENT_SCOPE) endif() endfunction() -- cgit v1.2.3