The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
38 lines
1.0 KiB
38 lines
1.0 KiB
"""Buildgen vsprojects plugin. |
|
|
|
This parses the list of libraries, and generates globals "vsprojects" |
|
and "vsproject_dict", to be used by the visual studio generators. |
|
|
|
""" |
|
|
|
|
|
def mako_plugin(dictionary): |
|
"""The exported plugin code for generate_vsprojeccts |
|
|
|
We want to help the work of the visual studio generators. |
|
|
|
""" |
|
|
|
libs = dictionary.get('libs', []) |
|
targets = dictionary.get('targets', []) |
|
|
|
for lib in libs: |
|
lib['is_library'] = True |
|
for target in targets: |
|
target['is_library'] = False |
|
|
|
projects = [] |
|
projects.extend(libs) |
|
projects.extend(targets) |
|
# Exclude projects without a visual project guid, such as the tests. |
|
projects = [project for project in projects |
|
if project.get('vs_project_guid', None)] |
|
|
|
# Exclude C++ projects for now |
|
projects = [project for project in projects |
|
if not project['language'] == 'c++'] |
|
|
|
project_dict = dict([(p['name'], p) for p in projects]) |
|
|
|
dictionary['vsprojects'] = projects |
|
dictionary['vsproject_dict'] = project_dict
|
|
|