cppclean:tldr:7eaea
The command cppclean
is being executed with the following arguments:
-
${path-to-project}
: This is a placeholder that should be replaced with the path to the project directory that you want to analyze usingcppclean
. It specifies the location of the project's source code. -
--include-path=${inc1}
: This argument sets an include path forcppclean
to search for additional header files.${inc1}
is another placeholder that should be replaced with the actual path to the first include directory you want to add. -
--include-path=${inc2}
: Similarly, this argument adds a second include path forcppclean
to search for header files.${inc2}
should be replaced with the path to the second include directory you want to use.
By supplying the appropriate values for ${path-to-project}
, ${inc1}
, and ${inc2}
, you would be able to run cppclean
on your project, specifying any additional include paths that are required for the analysis.