We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a80603 commit 013c278Copy full SHA for 013c278
SConstruct
@@ -44,7 +44,12 @@ if not config.has_section( 'PYTHON' ):
44
45
46
javaInclude = config.get( 'JAVA', 'inc' ).split( splitChar )
47
+
48
pyInclude = config.get( 'PYTHON', 'inc' ).split( splitChar )
49
+pyLibrary = []
50
+if config.has_option( 'PYTHON', 'libdir' ):
51
+ pyLibrary = config.get( 'PYTHON', 'libdir' ).split( splitChar )
52
53
libavInclude = config.get( 'LIBAV', 'inc' ).split( splitChar )
54
libavLibDir = config.get( 'LIBAV', 'libdir' ).split( splitChar )
55
@@ -124,6 +129,7 @@ envPy.Replace(
124
129
)
125
130
envPy.AppendUnique(
126
131
CPPPATH = pyInclude,
132
+ LIBPATH = pyLibrary,
127
133
SWIGPATH = envPy['CPPPATH']
128
134
135
0 commit comments