mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00
9 lines
357 B
Plaintext
9 lines
357 B
Plaintext
![]() |
# This file is required to get pyximport to work with C++.
|
||
|
# Switching from std::set to a pure C implementation is still on the table to simplify everything.
|
||
|
|
||
|
def make_ext(modname, pyxfilename):
|
||
|
from distutils.extension import Extension
|
||
|
return Extension(name=modname,
|
||
|
sources=[pyxfilename],
|
||
|
language='c++')
|