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 811f9dc commit f725d04Copy full SHA for f725d04
src/third_party/SConscript
@@ -72,10 +72,10 @@ if not use_system_version_of_library('intel_decimal128'):
72
('intel_decimal128', '#/src/third_party/IntelRDFPMathLib20U1/LIBRARY'))
73
74
def injectAllThirdPartyIncludePaths(thisEnv):
75
- thisEnv.AppendUnique(CPPPATH=[entry[1] for entry in thirdPartyIncludePathList])
+ thisEnv.PrependUnique(CPPPATH=[entry[1] for entry in thirdPartyIncludePathList])
76
77
def injectThirdPartyIncludePaths(thisEnv, libraries):
78
- thisEnv.AppendUnique(CPPPATH=[
+ thisEnv.PrependUnique(CPPPATH=[
79
entry[1] for entry in thirdPartyIncludePathList if entry[0] in libraries])
80
81
env.AddMethod(injectAllThirdPartyIncludePaths, 'InjectAllThirdPartyIncludePaths')
0 commit comments