It's not correct to run "cmake src" in the root directory of the
project. cmake should use the CMakeLists in the root directory but not
in the src. You should cd to the root dir of the project (not src) and
run "cmake .".
If you do not want a in-source build, you could do something like this:
$ cd /path/to/root/of/editorconfig
$ mkdir build
$ cd build
$ cmake ..
Maybe my words in INSTALL is misleading, I'll correct that.
Hong
Currently I don't know any good way to make a "make distclean" feature
on cmake. Just remove the CMakeCache.txt is OK, you do not have to
remove so many files.
Hong