You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Current master doesn't ship with executables for Mac, but instructions to create them don't seem to be present.
Describe the solution you'd like
The following steps worked for me, though they may need some adjustment.
Edit build/CMake/CMakeLists.txt:19 to say add_library(epanet SHARED ${EPANET_SOURCES})
cd build/CMake ; cmake . ; make
Create a folder called epanet_matlab_toolkit/mac in this project. Copy runepanet and libepanet.dylib from build/CMake/bin here. Copy include/epanet.h here, renamed to libepanet.h
Edit epanet_matlab_toolkit/epanet.m in this project to uncomment lines 427-430
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Current master doesn't ship with executables for Mac, but instructions to create them don't seem to be present.
Describe the solution you'd like
The following steps worked for me, though they may need some adjustment.
add_library(epanet SHARED ${EPANET_SOURCES})
cd build/CMake ; cmake . ; make
runepanet
andlibepanet.dylib
frombuild/CMake/bin
here. Copyinclude/epanet.h
here, renamed tolibepanet.h
The text was updated successfully, but these errors were encountered: