GH-794 add libstdc++ to build on linux. hopefully?

This commit is contained in:
Petr Mrázek 2015-05-21 00:28:30 +02:00
parent a296ec914b
commit 1bc2fbef11

View File

@ -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()