This is my first post here so forgive me if I\'ve done something wrong.
I\'ve been struggling with this for a few days and I\'ve finally decided to concede and ask f
No such file or directory
. It's normal, see the bottom of src/Makefile
for explanation.clean
. I couldn't recover from that.Remove all directions to build .so
files. These are linux files and cannot be built by mingw. Open all the Makefile
s and comment out lines containing .so
, except the lines:
libnoise: libnoise.so libnoise.a libnoise.la
all: libnoise.a libnoise.la libnoise.so.0.3
In the above lines only remove the words containing .so
. This will prevent building .so
targets.
Find the static library in src/.libs/libnoise.a
.
Building DLL would be a bit harder, as the authors build it using Visual Studio. There are no makefile targets to build the dll. One would need to prepare a few more lines to process files in win32
directory and produce the library out of it.