bugfix for changing STUBS-MPI to plain C

This commit is contained in:
Axel Kohlmeyer
2012-02-23 20:19:04 -05:00
parent 6086b77114
commit 7eef27acfd

View File

@ -12,7 +12,7 @@ path = os.path.dirname(os.getcwd())
# list of src files for LAMMPS and MPI STUBS # list of src files for LAMMPS and MPI STUBS
libfiles = glob.glob("%s/src/*.cpp" % path) + \ libfiles = glob.glob("%s/src/*.cpp" % path) + \
glob.glob("%s/src/STUBS/*.cpp" % path) glob.glob("%s/src/STUBS/*.c" % path)
lammps_library = Extension("_lammps_serial", lammps_library = Extension("_lammps_serial",
sources = libfiles, sources = libfiles,