File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 66
77- Boost : Fixed compatibility with Boost 1.85.
88
9+ Build
10+ -----
11+
12+ - SConstruct : Added `INCLUDE_PATHS` option.
13+
91410.6.2.0 (relative to 10.6.1.0)
1015========
1116
Original file line number Diff line number Diff line change @@ -647,6 +647,11 @@ o.Add(
647647 BoolVariable ( "INSTALL_CREATE_SYMLINKS" , "Whether to create symlinks post install" , True )
648648)
649649
650+ o .Add (
651+ "INCLUDE_PATHS" ,
652+ "Additional locations on which to search for include files for the dependencies." ,
653+ [],
654+ )
650655
651656# Test options
652657
@@ -803,6 +808,9 @@ dependencyIncludes = [
803808 systemIncludeArgument , "$FREETYPE_INCLUDE_PATH" ,
804809]
805810
811+ for path in env .get ( "INCLUDE_PATHS" ) :
812+ dependencyIncludes .extend ( [ systemIncludeArgument , path ] )
813+
806814env .Prepend (
807815 LIBPATH = [
808816 "./lib" ,
You can’t perform that action at this time.
0 commit comments