From 7e1df7540d519f63b4309b380e69b10ca5bff103 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 26 Dec 2015 20:28:23 +0200 Subject: Handle custom targets that produce static libraries that are then linked to other targets. --- environment.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'environment.py') diff --git a/environment.py b/environment.py index e09f6ae..e905b2f 100644 --- a/environment.py +++ b/environment.py @@ -145,6 +145,9 @@ class Environment(): def is_object(self, fname): return is_object(fname) + def is_library(self, fname): + return is_library(fname) + def merge_options(self, options): for (name, value) in options.items(): if name not in self.coredata.user_options: -- cgit v1.1