Skip to content

Commit

Permalink
Update _parser.py [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Feb 2, 2018
1 parent b87d16e commit c8db3e0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/py/autowig/_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ def pre_processing(asg, headers, flags, **kwargs):
if flag.startswith('-I'):
includedir = asg.add_directory(flag.strip('-I'))
includedir.is_searchpath = True

if flag.startswith('/I'):
includedir = asg.add_directory(flag.strip('/I'))
includedir.is_searchpath = True

SYSTEMS = dict(Linux = "linux",
Darwin = "osx",
Windows = "win")
Expand Down

0 comments on commit c8db3e0

Please sign in to comment.