examples/cython/setup.py
Go to the documentation of this file.
1 from distutils.core import setup
2 from distutils.extension import Extension
3 from Cython.Distutils import build_ext
4 
5 ext_module = Extension(
6  "example1",
7  ["example1.pyx"],
8  extra_compile_args=['-fopenmp'],
9  extra_link_args=['-fopenmp'],
10 )
11 
12 setup(
13  name = 'Hello world app',
14  cmdclass = {'build_ext': build_ext},
15  ext_modules = [ext_module],
16 )


acado
Author(s): Milan Vukov, Rien Quirynen
autogenerated on Mon Jun 10 2019 12:35:04