MCPcopy Create free account
hub / github.com/AdaCompNUS/summit / make_extension

Function make_extension

PythonAPI/carla/setup.py:122–133  ·  view source on GitHub ↗
(name, sources)

Source from the content-addressed store, hash-verified

120 depends += [x for x in walk('dependencies')]
121
122 def make_extension(name, sources):
123
124 return Extension(
125 name,
126 sources=sources,
127 include_dirs=include_dirs,
128 library_dirs=library_dirs,
129 libraries=libraries,
130 extra_compile_args=extra_compile_args,
131 extra_link_args=extra_link_args,
132 language='c++14',
133 depends=depends)
134
135 print('compiling:\n - %s' % '\n - '.join(sources))
136

Callers 1

get_libcarla_extensionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected