-
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.
Regenerating project files and massaging VS project files.
- Loading branch information
Nicolas Noble
committed
Jul 31, 2015
1 parent
772fb1e
commit 563b8a2
Showing
26 changed files
with
866 additions
and
570 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<%namespace file="sln_defs.include" import="gen_solution"/>\ | ||
<% | ||
solution_projects = [p for p in vsprojects if p.build != 'protoc'] | ||
solution_projects = [p for p in vsprojects if p.build != 'protoc' and p.language in ['c', 'c++']] | ||
%>\ | ||
${gen_solution(solution_projects)} | ||
${gen_solution(solution_projects, use_dlls='yes')} |
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 @@ | ||
<%namespace file="sln_defs.include" import="gen_solution"/>\ | ||
<% | ||
solution_projects = [p for p in vsprojects if p.build == 'all' and p.language in ['c', 'csharp']] | ||
%>\ | ||
${gen_solution(solution_projects, use_dlls='only')} |
2 changes: 1 addition & 1 deletion
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<%namespace file="../vcxproj_defs.include" import="gen_project"/>\ | ||
${gen_project('grpc_csharp_ext', libs, configuration_type = 'DynamicLibrary', props = ['winsock'], packages=['openssl','zlib'])} | ||
${gen_project('grpc_csharp_ext', libs, configuration_type = 'DynamicLibrary', props=['zlib-dll'], packages=['openssl','zlib'])} |
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.