diff options
Diffstat (limited to 'PCbuild/pythoncore.vcxproj')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 43a79fd..f240779 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -362,7 +362,11 @@ <ClInclude Include="..\Objects\stringlib\replace.h" /> <ClInclude Include="..\Objects\stringlib\split.h" /> <ClInclude Include="..\Objects\unicodetype_db.h" /> - <ClInclude Include="..\Parser\tokenizer.h" /> + <ClInclude Include="..\Parser\lexer\state.h" /> + <ClInclude Include="..\Parser\lexer\lexer.h" /> + <ClInclude Include="..\Parser\lexer\buffer.h" /> + <ClInclude Include="..\Parser\tokenizer\helpers.h" /> + <ClInclude Include="..\Parser\tokenizer\tokenizer.h" /> <ClInclude Include="..\Parser\string_parser.h" /> <ClInclude Include="..\Parser\pegen.h" /> <ClInclude Include="..\PC\errmap.h" /> @@ -507,7 +511,14 @@ <ClCompile Include="..\Objects\unionobject.c" /> <ClCompile Include="..\Objects\weakrefobject.c" /> <ClCompile Include="..\Parser\myreadline.c" /> - <ClCompile Include="..\Parser\tokenizer.c" /> + <ClCompile Include="..\Parser\lexer\state.c" /> + <ClCompile Include="..\Parser\lexer\lexer.c" /> + <ClCompile Include="..\Parser\lexer\buffer.c" /> + <ClCompile Include="..\Parser\tokenizer\string_tokenizer.c" /> + <ClCompile Include="..\Parser\tokenizer\file_tokenizer.c" /> + <ClCompile Include="..\Parser\tokenizer\utf8_tokenizer.c" /> + <ClCompile Include="..\Parser\tokenizer\readline_tokenizer.c" /> + <ClCompile Include="..\Parser\tokenizer\helpers.c" /> <ClCompile Include="..\Parser\token.c" /> <ClCompile Include="..\Parser\pegen.c" /> <ClCompile Include="..\Parser\pegen_errors.c" /> |