I feel almost silly for asking this but I couldn\'t find anything on this...
Suppose I have a cmake project containing a number of targets: libraries, executables, exter
I think you might be looking for the command make help
.
When I run make help
(after running cmake ..
) I get the following output:
The following are some of the valid targets for this Makefile:
... all (the default if no target is provided)
... clean
... depend
etc
You could also read the Makefile
that cmake auto-generates for you.