diff options
author | Victor Stinner <vstinner@python.org> | 2022-04-21 21:00:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 21:00:42 (GMT) |
commit | 8a4e519e7822d17ce062f55ba68e13bfeaf450de (patch) | |
tree | 4681cd35fcaade97195a687c15c28de4902f0a6c /PCbuild | |
parent | 6f9addb5ba0729e4bd2a1919d02e55c25382e26e (diff) | |
download | cpython-8a4e519e7822d17ce062f55ba68e13bfeaf450de.zip cpython-8a4e519e7822d17ce062f55ba68e13bfeaf450de.tar.gz cpython-8a4e519e7822d17ce062f55ba68e13bfeaf450de.tar.bz2 |
gh-79315: Add Include/cpython/pythread.h header (#91798)
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 | ||||
-rw-r--r-- | PCbuild/pythoncore.vcxproj.filters | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 189510a..78bbec1 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -171,6 +171,7 @@ <ClInclude Include="..\Include\cpython\pymem.h" /> <ClInclude Include="..\Include\cpython\pystate.h" /> <ClInclude Include="..\Include\cpython\pythonrun.h" /> + <ClInclude Include="..\Include\cpython\pythread.h" /> <ClInclude Include="..\Include\cpython\pytime.h" /> <ClInclude Include="..\Include\cpython\setobject.h" /> <ClInclude Include="..\Include\cpython\sysmodule.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 1ed52a7..0a9d545 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -459,6 +459,9 @@ <ClInclude Include="..\Include\cpython\pythonrun.h"> <Filter>Include\cpython</Filter> </ClInclude> + <ClInclude Include="..\Include\cpython\pythread.h"> + <Filter>Include\cpython</Filter> + </ClInclude> <ClInclude Include="..\Include\cpython\setobject.h"> <Filter>Include\cpython</Filter> </ClInclude> |