mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-05 18:12:09 +01:00
20 lines
538 B
Python
20 lines
538 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy, 2011 (ita)
|
|
|
|
from waflib.TaskGen import after_method, feature
|
|
|
|
@after_method('propagate_uselib_vars')
|
|
@feature('cprogram', 'cshlib', 'cxxprogram', 'cxxshlib', 'fcprogram', 'fcshlib')
|
|
def add_rpath_stuff(self):
|
|
all = self.to_list(getattr(self, 'use', []))
|
|
while all:
|
|
name = all.pop()
|
|
try:
|
|
tg = self.bld.get_tgen_by_name(name)
|
|
except:
|
|
continue
|
|
self.env.append_value('RPATH', tg.link_task.outputs[0].parent.abspath())
|
|
all.extend(self.to_list(getattr(tg, 'use', [])))
|
|
|