Ignore:
Timestamp:
12/08/17 15:11:38 (7 years ago)
Author:
dubos
Message:

devel : some improvements to build Python part

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/devel/Python/src/setup.py

    r615 r626  
    11from distutils.core import setup 
     2from distutils.extension import Extension 
    23from Cython.Build import cythonize 
    34setup(  name = "DYNAMICO kernels for unstructured mesh", 
    4         ext_modules = cythonize(["*.pyx"]) ) 
     5        ext_modules = cythonize([ 
     6            Extension("xios",["xios.pyx"],libraries=["xios"]), 
     7            Extension("unstructured",["unstructured.pyx"],libraries=["icosa","xios"]) 
     8            ]) 
     9        ) 
Note: See TracChangeset for help on using the changeset viewer.