From bfaaec6179bdcbbac4335db8a4b87ae670145a0b Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 20 Oct 2025 17:43:02 -0400 Subject: [PATCH] cmake --workflow: Convert implementation to internal role Previously it initialized as `PROJECT` but didn't actually add any commands. This was likely copied from the `--build` implementation, which has since been converted to `INTERNAL` too. --- Source/cmakemain.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 2aa1f0703b..5b8fa7aa8f 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -1065,7 +1065,7 @@ int do_workflow(int ac, char const* const* av) return 1; } - cmake cm(cmake::CommandSet::None, cmState::Role::Project); + cmake cm(cmake::CommandSet::None, cmState::Role::Internal); cmSystemTools::SetMessageCallback( [&cm](std::string const& msg, cmMessageMetadata const& md) { cmakemainMessageCallback(msg, md, &cm);