diff options
author | 2016-02-01 07:35:10 -0800 | |
---|---|---|
committer | 2016-02-01 07:35:10 -0800 | |
commit | f09fb7e4b042fbb0b7272598b941acc58b41e839 (patch) | |
tree | e5133410af56e77daf7fcba3236a1916ed0a5782 /vsprojects/vcxproj | |
parent | 9070b4be0c9547daa22c3d6e73d5889854ad60a4 (diff) | |
parent | d79331060baef0f18543dedca26127609dbcde0f (diff) |
Merge pull request #4979 from nicolasnoble/win32_subprocess
Adding windows support for gpr subprocesses.
Diffstat (limited to 'vsprojects/vcxproj')
-rw-r--r-- | vsprojects/vcxproj/gpr/gpr.vcxproj | 2 | ||||
-rw-r--r-- | vsprojects/vcxproj/gpr/gpr.vcxproj.filters | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/vsprojects/vcxproj/gpr/gpr.vcxproj b/vsprojects/vcxproj/gpr/gpr.vcxproj index cba3588890..b20d6ff77f 100644 --- a/vsprojects/vcxproj/gpr/gpr.vcxproj +++ b/vsprojects/vcxproj/gpr/gpr.vcxproj @@ -269,6 +269,8 @@ </ClCompile> <ClCompile Include="$(SolutionDir)\..\src\core\support\subprocess_posix.c"> </ClCompile> + <ClCompile Include="$(SolutionDir)\..\src\core\support\subprocess_windows.c"> + </ClCompile> <ClCompile Include="$(SolutionDir)\..\src\core\support\sync.c"> </ClCompile> <ClCompile Include="$(SolutionDir)\..\src\core\support\sync_posix.c"> diff --git a/vsprojects/vcxproj/gpr/gpr.vcxproj.filters b/vsprojects/vcxproj/gpr/gpr.vcxproj.filters index 1f8b09a1e9..85d8ec8672 100644 --- a/vsprojects/vcxproj/gpr/gpr.vcxproj.filters +++ b/vsprojects/vcxproj/gpr/gpr.vcxproj.filters @@ -91,6 +91,9 @@ <ClCompile Include="$(SolutionDir)\..\src\core\support\subprocess_posix.c"> <Filter>src\core\support</Filter> </ClCompile> + <ClCompile Include="$(SolutionDir)\..\src\core\support\subprocess_windows.c"> + <Filter>src\core\support</Filter> + </ClCompile> <ClCompile Include="$(SolutionDir)\..\src\core\support\sync.c"> <Filter>src\core\support</Filter> </ClCompile> |