Skip to content

Commit 8931b4a

Browse files
committed
Build: add binary I/O files to Windows build
Adds binary_io_writer.c, binary_io_reader.c, and binary_io.h to the Visual Studio project for _remote_debugging.
1 parent e3ea7a4 commit 8931b4a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

PCbuild/_remote_debugging.vcxproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,12 @@
105105
<ClCompile Include="..\Modules\_remote_debugging\frame_cache.c" />
106106
<ClCompile Include="..\Modules\_remote_debugging\threads.c" />
107107
<ClCompile Include="..\Modules\_remote_debugging\asyncio.c" />
108+
<ClCompile Include="..\Modules\_remote_debugging\binary_io_writer.c" />
109+
<ClCompile Include="..\Modules\_remote_debugging\binary_io_reader.c" />
108110
</ItemGroup>
109111
<ItemGroup>
110112
<ClInclude Include="..\Modules\_remote_debugging\_remote_debugging.h" />
113+
<ClInclude Include="..\Modules\_remote_debugging\binary_io.h" />
111114
</ItemGroup>
112115
<ItemGroup>
113116
<ResourceCompile Include="..\PC\python_nt.rc" />

PCbuild/_remote_debugging.vcxproj.filters

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,20 @@
3333
<ClCompile Include="..\Modules\_remote_debugging\asyncio.c">
3434
<Filter>Source Files</Filter>
3535
</ClCompile>
36+
<ClCompile Include="..\Modules\_remote_debugging\binary_io_writer.c">
37+
<Filter>Source Files</Filter>
38+
</ClCompile>
39+
<ClCompile Include="..\Modules\_remote_debugging\binary_io_reader.c">
40+
<Filter>Source Files</Filter>
41+
</ClCompile>
3642
</ItemGroup>
3743
<ItemGroup>
3844
<ClInclude Include="..\Modules\_remote_debugging\_remote_debugging.h">
3945
<Filter>Header Files</Filter>
4046
</ClInclude>
47+
<ClInclude Include="..\Modules\_remote_debugging\binary_io.h">
48+
<Filter>Header Files</Filter>
49+
</ClInclude>
4150
</ItemGroup>
4251
<ItemGroup>
4352
<ResourceCompile Include="..\PC\python_nt.rc">

0 commit comments

Comments
 (0)