diff options
-rw-r--r-- | build.json | 8 | ||||
-rw-r--r-- | vsprojects/vs2013/gpr_shared.vcxproj | 2 | ||||
-rw-r--r-- | vsprojects/vs2013/gpr_shared.vcxproj.filters | 3 |
3 files changed, 9 insertions, 4 deletions
diff --git a/build.json b/build.json index ca41c8dcb3..401ef05192 100644 --- a/build.json +++ b/build.json @@ -1628,7 +1628,6 @@ { "name": "qps_client", "build": "test", - "run": false, "language": "c++", "src": [ "test/cpp/qps/qpstest.proto", @@ -1641,12 +1640,12 @@ "grpc", "gpr_test_util", "gpr" - ] + ], + "run": false }, { "name": "qps_server", "build": "test", - "run": false, "language": "c++", "src": [ "test/cpp/qps/qpstest.proto", @@ -1659,7 +1658,8 @@ "grpc", "gpr_test_util", "gpr" - ] + ], + "run": false }, { "name": "ruby_plugin", diff --git a/vsprojects/vs2013/gpr_shared.vcxproj b/vsprojects/vs2013/gpr_shared.vcxproj index 0b3d4eab7c..b9131e381c 100644 --- a/vsprojects/vs2013/gpr_shared.vcxproj +++ b/vsprojects/vs2013/gpr_shared.vcxproj @@ -120,6 +120,8 @@ </ClCompile> <ClCompile Include="..\..\src\core\support\cpu_posix.c"> </ClCompile> + <ClCompile Include="..\..\src\core\support\cpu_windows.c"> + </ClCompile> <ClCompile Include="..\..\src\core\support\env_linux.c"> </ClCompile> <ClCompile Include="..\..\src\core\support\env_posix.c"> diff --git a/vsprojects/vs2013/gpr_shared.vcxproj.filters b/vsprojects/vs2013/gpr_shared.vcxproj.filters index 20e4e07c49..1e908a5ba5 100644 --- a/vsprojects/vs2013/gpr_shared.vcxproj.filters +++ b/vsprojects/vs2013/gpr_shared.vcxproj.filters @@ -16,6 +16,9 @@ <ClCompile Include="..\..\src\core\support\cpu_posix.c"> <Filter>src\core\support</Filter> </ClCompile> + <ClCompile Include="..\..\src\core\support\cpu_windows.c"> + <Filter>src\core\support</Filter> + </ClCompile> <ClCompile Include="..\..\src\core\support\env_linux.c"> <Filter>src\core\support</Filter> </ClCompile> |