Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. env = Environment()
  2. # These paths WILL BE scanned for header file changes
  3. env.Append(CPPPATH = ['path1', '/another/path', 'path3'])
  4.  
  5. env = Environment()
  6. # These paths will NOT be scanned for header file changes
  7. env.Append(CXXFLAGS = ['-Ipath1', '-I/another/path', '-Ipath3'])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement