cmake - Renaming `CMakeLists.txt` -


is there way rename various cmakelists.txt more meaningful?

it can quite distracting have bunch of them open @ same time when working on bigger project contains several cmake projects.

no, it's not possible. name meaningful, used it.

rationale: cmake must find files, common choice related files have common name , cmake in every folder. make (makefile) , autotools (e.g. makefile.am) chose similar.

alternative approaches configure file name project wide (your problem remain) or indicating file names in file in parent directory (error prone).


Comments