aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/vsprojects/buildtests_c.sln.template
diff options
context:
space:
mode:
Diffstat (limited to 'templates/vsprojects/buildtests_c.sln.template')
-rw-r--r--templates/vsprojects/buildtests_c.sln.template8
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/vsprojects/buildtests_c.sln.template b/templates/vsprojects/buildtests_c.sln.template
index 21312ab79a..9b18c7445d 100644
--- a/templates/vsprojects/buildtests_c.sln.template
+++ b/templates/vsprojects/buildtests_c.sln.template
@@ -2,6 +2,12 @@
--- |
<%namespace file="sln_defs.include" import="gen_solution"/>\
<%
- solution_projects = [p for p in vsprojects if p.build not in ['protoc', 'fuzzer'] and p.language == 'c' and not p.boringssl and not p.zlib]
+ solution_projects = [
+ p for p in vsprojects
+ if p.build in ['test', 'tool']
+ and p.language == 'c'
+ and not p.boringssl
+ and not p.zlib
+ ]
%>\
${gen_solution(solution_projects, use_dlls='yes')}