~eda-qa/leaflang/misc

« back to all changes in this revision

Viewing changes to SConstruct

  • Committer: edA-qa mort-ora-y
  • Date: 2017-07-22 19:48:13 UTC
  • mfrom: (99.1.41 error)
  • Revision ID: eda-qa@disemia.com-20170722194813-h3yqkhe1j2ouwga4
merging error handling

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
        variables = vars,
18
18
        BUILD_LIB='$BUILD_DIR/lib',
19
19
        LIBPATH=['$BUILD_DIR/lib','$BOOST_PREFIX/lib'],
20
 
        CPPPATH=['#include'],
 
20
        # there are some generated includes so include both source include and build include
 
21
        CPPPATH=['#include', 'include'],
21
22
        tools=['default','textfile'],
22
23
        )
23
24
#print baseEnv.Dump()
42
43
        '-Wno-sign-conversion', # This is just a pain with enums
43
44
        '-Wno-unused-private-field' #these should probably be fixed in our code
44
45
        ])
 
46
# TODO: add -Wsuggset-override above (lots of work)
45
47
if baseEnv['IS_DARWIN']:
46
48
        baseEnv.Append(CXXFLAGS = ['-Wno-potentially-evaluated-expression']) #potential compiler bug?
47
49