Commit 472d4916 authored by gsamain's avatar gsamain Committed by Xavier Thompson

Build script for new test

parent 2b82db57
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
setup(
ext_modules = cythonize([
Extension(
'test_cpp',
language='c++',
sources=['test_cpp.pyx'],
extra_compile_args=["-pthread", "-std=c++11"],
),
])
)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment