362 |
############ boost (required) ################################## |
############ boost (required) ################################## |
363 |
|
|
364 |
if not sysheaderopt =="": |
if not sysheaderopt =="": |
365 |
conf.env.Append(CCFLAGS=sysheaderopt+os.path.join(env['boost_path'],'boost')) |
# This is required because we can't -isystem /usr/system because it breaks std includes |
366 |
|
if os.path.normpath(env['boost_path']) =="/usr/include": |
367 |
|
conf.env.Append(CCFLAGS=sysheaderopt+os.path.join(env['boost_path'],'boost')) |
368 |
|
else: |
369 |
|
conf.env.Append(CCFLAGS=sysheaderopt+env['boost_path']) |
370 |
else: |
else: |
371 |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
372 |
|
|