What does `/usr/bin/cmake -E cmake_depends "Unix Makefiles" <SOME_PATH>` mean? -


could explain /usr/bin/cmake -e cmake_depends "unix makefiles" <some_path> means? couldn't find description of cmake_depends on cmake.org...

thanks in advance.

as cmake_depends not documented in documentation, call internal interface, should not used users. if use it, might fail new version without warning or deprecation period.

grepping through cmake's source code reveals following comments, might you.

cmake/source/cmmakefiletargetgenerator.cxx:

// generate call signature: // //   cmake -e cmake_depends <generator> //                          <home-src-dir> <start-src-dir> //                          <home-out-dir> <start-out-dir> //                          <dep-info> --color=$(color) // // gives dependency scanner enough information recreate 

cmake/source/cmcmd.cxx:

// full signature: // //   -e cmake_depends <generator> //                    <home-src-dir> <start-src-dir> //                    <home-out-dir> <start-out-dir> //                    <dep-info> [--color=$(color)] ... // support older signature existing makefiles: // //   -e cmake_depends <generator> //                    <home-out-dir> <start-out-dir> //                    <dep-info> // // pretend source directories same // binary directories @ least scanning work. 

Comments

Popular posts from this blog

Ansible - ERROR! the field 'hosts' is required but was not set -

customize file_field button ruby on rails -

SoapUI on windows 10 - high DPI/4K scaling issue -