diff options
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 3 |
1 files changed, 3 insertions, 0 deletions
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: |