summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index e398bba8712..1cb12012af6 100644
--- a/SConstruct
+++ b/SConstruct
@@ -668,9 +668,11 @@ extraLibPlaces = []
env['EXTRACPPPATH'] = []
env['EXTRALIBPATH'] = []
+env['EXTRABINPATH'] = []
def addExtraLibs( s ):
for x in s.split(","):
+ env.Append( EXTRABINPATH=[ x + "/bin" ] )
env.Append( EXTRACPPPATH=[ x + "/include" ] )
env.Append( EXTRALIBPATH=[ x + "/lib" ] )
env.Append( EXTRALIBPATH=[ x + "/lib64" ] )