Browse Source

Set include path as weell as file path when creating a new TU.

pull/1514/head
Joao Matos 5 years ago committed by João Matos
parent
commit
d47bce5700
  1. 1
      src/AST/TranslationUnit.cs

1
src/AST/TranslationUnit.cs

@ -19,6 +19,7 @@ namespace CppSharp.AST
public TranslationUnit(string file) : this() public TranslationUnit(string file) : this()
{ {
FilePath = file; FilePath = file;
IncludePath = file;
} }
/// Contains the macros present in the unit. /// Contains the macros present in the unit.

Loading…
Cancel
Save