diff options
| author | Victor Stinner <vstinner@redhat.com> | 2018-10-30 15:14:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-30 15:14:25 +0100 |
| commit | 31368a4f0e531c19affe2a1becd25fc316bc7501 (patch) | |
| tree | 79627d42611a04288b832799204c77b2688f9872 /PCbuild | |
| parent | 9204fb8623896cc5f68ae350784ee25e8a7b2184 (diff) | |
| download | cpython-git-31368a4f0e531c19affe2a1becd25fc316bc7501.tar.gz | |
bpo-35081: Move Include/pyatomic.c to Include/internal/ (GH-10239)
Add pyatomic.h to the VS project (it wasn't referenced).
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 cb835390ee..f65bb5b219 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -118,6 +118,7 @@ <ClInclude Include="..\Include\internal\gil.h" /> <ClInclude Include="..\Include\internal\hamt.h" /> <ClInclude Include="..\Include\internal\mem.h" /> + <ClInclude Include="..\Include\internal\pyatomic.h" /> <ClInclude Include="..\Include\internal\pystate.h" /> <ClInclude Include="..\Include\internal\warnings.h" /> <ClInclude Include="..\Include\intrcheck.h" /> diff --git a/PCbuild/pythoncore.vcxproj.filters b/PCbuild/pythoncore.vcxproj.filters index 510a9c2b2e..7fdadc8167 100644 --- a/PCbuild/pythoncore.vcxproj.filters +++ b/PCbuild/pythoncore.vcxproj.filters @@ -153,6 +153,9 @@ <ClInclude Include="..\Include\internal\mem.h"> <Filter>Include</Filter> </ClInclude> + <ClInclude Include="..\Include\internal\pyatomic.h"> + <Filter>Include</Filter> + </ClInclude> <ClInclude Include="..\Include\internal\pystate.h"> <Filter>Include</Filter> </ClInclude> |
