Index: wflow-py/make_wflow_exe.py =================================================================== diff -u -r08f3880c68cb4239c32a0fd759f0f59de57f58b8 -r0de270e0aacfb5d3ec6161083e6c9d0ba481d5fd --- wflow-py/make_wflow_exe.py (.../make_wflow_exe.py) (revision 08f3880c68cb4239c32a0fd759f0f59de57f58b8) +++ wflow-py/make_wflow_exe.py (.../make_wflow_exe.py) (revision 0de270e0aacfb5d3ec6161083e6c9d0ba481d5fd) @@ -8,8 +8,8 @@ import netCDF4_utils nrbits = str(ctypes.sizeof(ctypes.c_voidp) * 8) -data_files=matplotlib.get_py2exe_datafiles() + thename = "Wflow"+MVERSION+'-'+nrbits f = Freezer("Wflow"+MVERSION+'-'+nrbits) f.addScript("wflow/__init__.py") @@ -34,9 +34,14 @@ f() # starts the freezing process +# matplolib data files +data_files=matplotlib.get_py2exe_datafiles() + +# pcraster dll's ddir = "c:/pcraster4-64/lib/" data_files.append((".", glob.glob(ddir + "/*.dll"))) +# GDAL data files gdaldata = os.getenv("GDAL_DATA") data_files.append(("./gdal-data", glob.glob(gdaldata + "/*.*")))