├── .gitattributes ├── .gitignore ├── GLM_CONFIG ├── LICENSE ├── Makefile ├── README.Macintosh ├── README.Windows ├── README.md ├── clean_glm.sh ├── debian ├── changelog ├── compat ├── control-no+ ├── control-with+ ├── glm+.install ├── glm+.png ├── glm.install ├── glm.png └── rules ├── freebsd ├── create_pkg.info └── create_pkg.sh ├── glm.png ├── include └── libglm.h ├── macos ├── Info.plist ├── InfoPlist.strings ├── PkgInfo ├── glm+.icns ├── glm.icns ├── glm_files.icns └── macpkg.sh ├── patches ├── add_bubbler.patch ├── add_restart.patch ├── bubbler.csv └── bubbler.nml ├── src ├── glm.h ├── glm_aed.F90 ├── glm_aed2.F90 ├── glm_balance.c ├── glm_balance.h ├── glm_bird.c ├── glm_bird.h ├── glm_const.c ├── glm_const.h ├── glm_csv.c ├── glm_csv.h ├── glm_debug.c ├── glm_debug.h ├── glm_deep.c ├── glm_deep.h ├── glm_fabm.F90 ├── glm_flow.c ├── glm_flow.h ├── glm_globals.c ├── glm_globals.h ├── glm_init.c ├── glm_init.h ├── glm_input.c ├── glm_input.h ├── glm_layers.c ├── glm_layers.h ├── glm_lnum.c ├── glm_lnum.h ├── glm_main.c ├── glm_mixer.c ├── glm_mixer.h ├── glm_mixu.c ├── glm_mixu.h ├── glm_mobl.c ├── glm_mobl.h ├── glm_model.c ├── glm_ncdf.c ├── glm_ncdf.h ├── glm_output.c ├── glm_output.h ├── glm_plot.c ├── glm_plot.h ├── glm_plugin.c ├── glm_plugin.h ├── glm_sizes.c ├── glm_stress.c ├── glm_stress.h ├── glm_surface.c ├── glm_surface.h ├── glm_types.F90 ├── glm_types.h ├── glm_util.c ├── glm_util.h ├── glm_wqual.c ├── glm_wqual.h ├── glm_zones.F90 └── gsw_const.h ├── vers.sh └── win ├── .gitattributes ├── .gitignore ├── README ├── build_fabm-glm_lib.bat ├── glm+.ico ├── glm+.rc ├── glm.ico ├── glm.rc ├── vs-glm-with-fabm ├── glm+.sln ├── glm+.vcxproj ├── glm+.vcxproj.filters ├── glm-aed.vfproj ├── glm-fabm.vfproj ├── glm.sln ├── glm.vcxproj └── glm.vcxproj.filters ├── vs-glm-wq-dll ├── README ├── dlfcn.c ├── dlfcn.h ├── glm.sln ├── glm.vcxproj ├── glm.vcxproj.filters ├── libglm_wq_aed+.sln ├── libglm_wq_aed+.vfproj ├── libglm_wq_aed.def ├── libglm_wq_aed.sln ├── libglm_wq_aed.vfproj ├── libglm_wq_fabm.def ├── libglm_wq_fabm.sln ├── libglm_wq_fabm.vfproj ├── libplugin.vcxproj └── libplugin.vcxproj.filters ├── vs-glm ├── build_glm+.bat ├── build_glm.bat ├── glm+.sln ├── glm+.vcxproj ├── glm+.vcxproj.filters ├── glm-aed.vfproj ├── glm-aed2.vfproj ├── glm.sln ├── glm.vcxproj └── glm.vcxproj.filters └── vs-libglm ├── glm-aed.vfproj ├── libglm+.sln ├── libglm+.vcxproj ├── libglm+.vcxproj.filters ├── libglm.sln ├── libglm.vcxproj └── libglm.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/.gitignore -------------------------------------------------------------------------------- /GLM_CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/GLM_CONFIG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/Makefile -------------------------------------------------------------------------------- /README.Macintosh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/README.Macintosh -------------------------------------------------------------------------------- /README.Windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/README.Windows -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/README.md -------------------------------------------------------------------------------- /clean_glm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/clean_glm.sh -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control-no+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/debian/control-no+ -------------------------------------------------------------------------------- /debian/control-with+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/debian/control-with+ -------------------------------------------------------------------------------- /debian/glm+.install: -------------------------------------------------------------------------------- 1 | glm+ usr/local/bin 2 | -------------------------------------------------------------------------------- /debian/glm+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/debian/glm+.png -------------------------------------------------------------------------------- /debian/glm.install: -------------------------------------------------------------------------------- 1 | glm usr/local/bin 2 | -------------------------------------------------------------------------------- /debian/glm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/debian/glm.png -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/debian/rules -------------------------------------------------------------------------------- /freebsd/create_pkg.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/freebsd/create_pkg.info -------------------------------------------------------------------------------- /freebsd/create_pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/freebsd/create_pkg.sh -------------------------------------------------------------------------------- /glm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/glm.png -------------------------------------------------------------------------------- /include/libglm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/include/libglm.h -------------------------------------------------------------------------------- /macos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/macos/Info.plist -------------------------------------------------------------------------------- /macos/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/macos/InfoPlist.strings -------------------------------------------------------------------------------- /macos/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLGLM3 -------------------------------------------------------------------------------- /macos/glm+.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/macos/glm+.icns -------------------------------------------------------------------------------- /macos/glm.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/macos/glm.icns -------------------------------------------------------------------------------- /macos/glm_files.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/macos/glm_files.icns -------------------------------------------------------------------------------- /macos/macpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/macos/macpkg.sh -------------------------------------------------------------------------------- /patches/add_bubbler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/patches/add_bubbler.patch -------------------------------------------------------------------------------- /patches/add_restart.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/patches/add_restart.patch -------------------------------------------------------------------------------- /patches/bubbler.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/patches/bubbler.csv -------------------------------------------------------------------------------- /patches/bubbler.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/patches/bubbler.nml -------------------------------------------------------------------------------- /src/glm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm.h -------------------------------------------------------------------------------- /src/glm_aed.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_aed.F90 -------------------------------------------------------------------------------- /src/glm_aed2.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_aed2.F90 -------------------------------------------------------------------------------- /src/glm_balance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_balance.c -------------------------------------------------------------------------------- /src/glm_balance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_balance.h -------------------------------------------------------------------------------- /src/glm_bird.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_bird.c -------------------------------------------------------------------------------- /src/glm_bird.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_bird.h -------------------------------------------------------------------------------- /src/glm_const.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_const.c -------------------------------------------------------------------------------- /src/glm_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_const.h -------------------------------------------------------------------------------- /src/glm_csv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_csv.c -------------------------------------------------------------------------------- /src/glm_csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_csv.h -------------------------------------------------------------------------------- /src/glm_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_debug.c -------------------------------------------------------------------------------- /src/glm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_debug.h -------------------------------------------------------------------------------- /src/glm_deep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_deep.c -------------------------------------------------------------------------------- /src/glm_deep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_deep.h -------------------------------------------------------------------------------- /src/glm_fabm.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_fabm.F90 -------------------------------------------------------------------------------- /src/glm_flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_flow.c -------------------------------------------------------------------------------- /src/glm_flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_flow.h -------------------------------------------------------------------------------- /src/glm_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_globals.c -------------------------------------------------------------------------------- /src/glm_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_globals.h -------------------------------------------------------------------------------- /src/glm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_init.c -------------------------------------------------------------------------------- /src/glm_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_init.h -------------------------------------------------------------------------------- /src/glm_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_input.c -------------------------------------------------------------------------------- /src/glm_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_input.h -------------------------------------------------------------------------------- /src/glm_layers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_layers.c -------------------------------------------------------------------------------- /src/glm_layers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_layers.h -------------------------------------------------------------------------------- /src/glm_lnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_lnum.c -------------------------------------------------------------------------------- /src/glm_lnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_lnum.h -------------------------------------------------------------------------------- /src/glm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_main.c -------------------------------------------------------------------------------- /src/glm_mixer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_mixer.c -------------------------------------------------------------------------------- /src/glm_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_mixer.h -------------------------------------------------------------------------------- /src/glm_mixu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_mixu.c -------------------------------------------------------------------------------- /src/glm_mixu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_mixu.h -------------------------------------------------------------------------------- /src/glm_mobl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_mobl.c -------------------------------------------------------------------------------- /src/glm_mobl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_mobl.h -------------------------------------------------------------------------------- /src/glm_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_model.c -------------------------------------------------------------------------------- /src/glm_ncdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_ncdf.c -------------------------------------------------------------------------------- /src/glm_ncdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_ncdf.h -------------------------------------------------------------------------------- /src/glm_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_output.c -------------------------------------------------------------------------------- /src/glm_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_output.h -------------------------------------------------------------------------------- /src/glm_plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_plot.c -------------------------------------------------------------------------------- /src/glm_plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_plot.h -------------------------------------------------------------------------------- /src/glm_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_plugin.c -------------------------------------------------------------------------------- /src/glm_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_plugin.h -------------------------------------------------------------------------------- /src/glm_sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_sizes.c -------------------------------------------------------------------------------- /src/glm_stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_stress.c -------------------------------------------------------------------------------- /src/glm_stress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_stress.h -------------------------------------------------------------------------------- /src/glm_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_surface.c -------------------------------------------------------------------------------- /src/glm_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_surface.h -------------------------------------------------------------------------------- /src/glm_types.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_types.F90 -------------------------------------------------------------------------------- /src/glm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_types.h -------------------------------------------------------------------------------- /src/glm_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_util.c -------------------------------------------------------------------------------- /src/glm_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_util.h -------------------------------------------------------------------------------- /src/glm_wqual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_wqual.c -------------------------------------------------------------------------------- /src/glm_wqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_wqual.h -------------------------------------------------------------------------------- /src/glm_zones.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/glm_zones.F90 -------------------------------------------------------------------------------- /src/gsw_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/src/gsw_const.h -------------------------------------------------------------------------------- /vers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/vers.sh -------------------------------------------------------------------------------- /win/.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /win/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/.gitignore -------------------------------------------------------------------------------- /win/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/README -------------------------------------------------------------------------------- /win/build_fabm-glm_lib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/build_fabm-glm_lib.bat -------------------------------------------------------------------------------- /win/glm+.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/glm+.ico -------------------------------------------------------------------------------- /win/glm+.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/glm+.rc -------------------------------------------------------------------------------- /win/glm.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/glm.ico -------------------------------------------------------------------------------- /win/glm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/glm.rc -------------------------------------------------------------------------------- /win/vs-glm-with-fabm/glm+.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-with-fabm/glm+.sln -------------------------------------------------------------------------------- /win/vs-glm-with-fabm/glm+.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-with-fabm/glm+.vcxproj -------------------------------------------------------------------------------- /win/vs-glm-with-fabm/glm+.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-with-fabm/glm+.vcxproj.filters -------------------------------------------------------------------------------- /win/vs-glm-with-fabm/glm-aed.vfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-with-fabm/glm-aed.vfproj -------------------------------------------------------------------------------- /win/vs-glm-with-fabm/glm-fabm.vfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-with-fabm/glm-fabm.vfproj -------------------------------------------------------------------------------- /win/vs-glm-with-fabm/glm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-with-fabm/glm.sln -------------------------------------------------------------------------------- /win/vs-glm-with-fabm/glm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-with-fabm/glm.vcxproj -------------------------------------------------------------------------------- /win/vs-glm-with-fabm/glm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-with-fabm/glm.vcxproj.filters -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/README -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/dlfcn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/dlfcn.c -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/dlfcn.h -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/glm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/glm.sln -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/glm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/glm.vcxproj -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/glm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/glm.vcxproj.filters -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/libglm_wq_aed+.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/libglm_wq_aed+.sln -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/libglm_wq_aed+.vfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/libglm_wq_aed+.vfproj -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/libglm_wq_aed.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/libglm_wq_aed.def -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/libglm_wq_aed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/libglm_wq_aed.sln -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/libglm_wq_aed.vfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/libglm_wq_aed.vfproj -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/libglm_wq_fabm.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/libglm_wq_fabm.def -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/libglm_wq_fabm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/libglm_wq_fabm.sln -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/libglm_wq_fabm.vfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/libglm_wq_fabm.vfproj -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/libplugin.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/libplugin.vcxproj -------------------------------------------------------------------------------- /win/vs-glm-wq-dll/libplugin.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm-wq-dll/libplugin.vcxproj.filters -------------------------------------------------------------------------------- /win/vs-glm/build_glm+.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm/build_glm+.bat -------------------------------------------------------------------------------- /win/vs-glm/build_glm.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm/build_glm.bat -------------------------------------------------------------------------------- /win/vs-glm/glm+.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm/glm+.sln -------------------------------------------------------------------------------- /win/vs-glm/glm+.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm/glm+.vcxproj -------------------------------------------------------------------------------- /win/vs-glm/glm+.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm/glm+.vcxproj.filters -------------------------------------------------------------------------------- /win/vs-glm/glm-aed.vfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm/glm-aed.vfproj -------------------------------------------------------------------------------- /win/vs-glm/glm-aed2.vfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm/glm-aed2.vfproj -------------------------------------------------------------------------------- /win/vs-glm/glm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm/glm.sln -------------------------------------------------------------------------------- /win/vs-glm/glm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm/glm.vcxproj -------------------------------------------------------------------------------- /win/vs-glm/glm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-glm/glm.vcxproj.filters -------------------------------------------------------------------------------- /win/vs-libglm/glm-aed.vfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-libglm/glm-aed.vfproj -------------------------------------------------------------------------------- /win/vs-libglm/libglm+.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-libglm/libglm+.sln -------------------------------------------------------------------------------- /win/vs-libglm/libglm+.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-libglm/libglm+.vcxproj -------------------------------------------------------------------------------- /win/vs-libglm/libglm+.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-libglm/libglm+.vcxproj.filters -------------------------------------------------------------------------------- /win/vs-libglm/libglm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-libglm/libglm.sln -------------------------------------------------------------------------------- /win/vs-libglm/libglm.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-libglm/libglm.vcxproj -------------------------------------------------------------------------------- /win/vs-libglm/libglm.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AquaticEcoDynamics/GLM/HEAD/win/vs-libglm/libglm.vcxproj.filters --------------------------------------------------------------------------------