mity / md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
MIT License
776 stars 146 forks source link

make instructions look... peculiar... to me #17

Closed aoloe closed 7 years ago

aoloe commented 7 years ago

https://github.com/mity/md4c/wiki/Building-MD4C says:

$ cd md4c
$ mkdir build
$ cmake -G ..
$ make

shouldn't it be:

$ cd md4c
$ mkdir build
$ cd build
$ cmake ..
$ make

?

on my computer the second one works well, while the first one gives me an error that the generator .. could not be found...

mity commented 7 years ago

Yes. Thanks for reporting.

I've updated it.