Building on Linux and OSX

    gcc -Wall -O2 -I. -o nsvg2png nsvg2png.c

Building on Windows

  with MinGW
    gcc -Wall -O2 -I. -o nsvg2png.exe nsvg2png.c

  with VS2015 command prompt (VS2015 is the minimum required)
    cl /O2 /W4 /nologo nsvg2png.c /link /out:nsvg2png.exe
    


