-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
big refactoring of visual studio projects, started using nuget
dependencies.
- Loading branch information
1 parent
2a191e3
commit 8ff00a3
Showing
90 changed files
with
556 additions
and
6,354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj.filters_defs.include" import="gen_filters"/>\ | ||
${gen_filters('gpr', libs, targets)} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj_defs.include" import="gen_project"/>\ | ||
${gen_project('gpr', libs, targets)} |
2 changes: 2 additions & 0 deletions
2
templates/vsprojects/gpr_test_util/gpr_test_util.vcxproj.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj_defs.include" import="gen_project"/>\ | ||
${gen_project('gpr_test_util', libs, targets)} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj.filters_defs.include" import="gen_filters"/>\ | ||
${gen_filters('grpc++', libs, targets)} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj_defs.include" import="gen_project"/>\ | ||
${gen_project('grpc++', libs, targets)} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
## Template for Visual Studio solution | ||
## based on http://msdn.microsoft.com/en-us/library/bb165951(v=vs.90).aspx | ||
## NOTE: tabs in this file are needed by Visual Studio to correctly interpret | ||
## the file. | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 2013 | ||
VisualStudioVersion = 12.0.21005.1 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
<% | ||
## Visual Studio uses GUIDs for project types | ||
## http://msdn.microsoft.com/en-us/library/hb23x61k%28v=vs.80%29.aspx | ||
cpp_proj_type = "{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}" | ||
%>\ | ||
% for project in vsprojects: | ||
Project("${cpp_proj_type}") = "${project.name}", "${project.name}\${project.name}.vcxproj", "${project.vs_project_guid}" | ||
% if project.get('deps', None): | ||
ProjectSection(ProjectDependencies) = postProject | ||
% for dep in project.get('deps', []): | ||
${vsproject_dict[dep].vs_project_guid} = ${vsproject_dict[dep].vs_project_guid} | ||
% endfor | ||
EndProjectSection | ||
% endif | ||
EndProject | ||
% endfor | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Win32 = Debug|Win32 | ||
Release|Win32 = Release|Win32 | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
% for project in vsprojects: | ||
${project.vs_project_guid}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
${project.vs_project_guid}.Debug|Win32.Build.0 = Debug|Win32 | ||
${project.vs_project_guid}.Release|Win32.ActiveCfg = Release|Win32 | ||
${project.vs_project_guid}.Release|Win32.Build.0 = Release|Win32 | ||
% endfor | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj.filters_defs.include" import="gen_filters"/>\ | ||
${gen_filters('grpc', libs, targets)} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj_defs.include" import="gen_project"/>\ | ||
${gen_project('grpc', libs, targets, openssl_pkg_version='1.0.2.1', zlib_pkg_version='1.2.8.7')} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="openssl" version="1.0.2.1" targetFramework="Native" /> | ||
<package id="openssl.redist" version="1.0.2.1" targetFramework="Native" /> | ||
<package id="zlib" version="1.2.8.7" targetFramework="Native" /> | ||
<package id="zlib.redist" version="1.2.8.7" targetFramework="Native" /> | ||
</packages> |
2 changes: 2 additions & 0 deletions
2
templates/vsprojects/grpc_csharp_ext/grpc_csharp_ext.vcxproj.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj_defs.include" import="gen_project"/>\ | ||
${gen_project('grpc_csharp_ext', libs, targets, configuration_type = 'DynamicLibrary', additional_props = ['winsock'], openssl_pkg_version='1.0.2.1', zlib_pkg_version='1.2.8.7')} |
7 changes: 7 additions & 0 deletions
7
templates/vsprojects/grpc_csharp_ext/packages.config.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="openssl" version="1.0.2.1" targetFramework="Native" /> | ||
<package id="openssl.redist" version="1.0.2.1" targetFramework="Native" /> | ||
<package id="zlib" version="1.2.8.7" targetFramework="Native" /> | ||
<package id="zlib.redist" version="1.2.8.7" targetFramework="Native" /> | ||
</packages> |
2 changes: 2 additions & 0 deletions
2
templates/vsprojects/grpc_test_util/grpc_test_util.vcxproj.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj_defs.include" import="gen_project"/>\ | ||
${gen_project('grpc_test_util', libs, targets)} |
2 changes: 2 additions & 0 deletions
2
templates/vsprojects/grpc_unsecure/grpc_unsecure.vcxproj.filters.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj.filters_defs.include" import="gen_filters"/>\ | ||
${gen_filters('grpc_unsecure', libs, targets)} |
2 changes: 2 additions & 0 deletions
2
templates/vsprojects/grpc_unsecure/grpc_unsecure.vcxproj.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<%namespace file="../vcxproj_defs.include" import="gen_project"/>\ | ||
${gen_project('grpc_unsecure', libs, targets, zlib_pkg_version='1.2.8.7')} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="zlib" version="1.2.8.7" targetFramework="Native" /> | ||
<package id="zlib.redist" version="1.2.8.7" targetFramework="Native" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.