Ask Your Question
3

What is the method to verify the status of a CMake target without executing the build process?

asked 2021-08-15 11:00:00 +0000

plato gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-06-11 05:00:00 +0000

scrum gravatar image

The method to verify the status of a CMake target without executing the build process is by using the CMake command-line tool to generate a build file and then running the cmake --build <path/to/build> command with the -n or --dry-run option. This will print out the actual commands that would be executed during the build process, but without actually executing them. You can then check if the target appears in the list of commands to be executed. If it does, then it is included in the build, and if it doesn't, then it is not.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-08-15 11:00:00 +0000

Seen: 8 times

Last updated: Jun 11 '22