diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-08-21 18:50:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-26 15:48:46 (GMT) |
commit | c8deeac68f1462461a464acd6d2c2728b9a293c2 (patch) | |
tree | 510248aabe3ec3db117e2cc0d508d91dbb088f64 /Source/cmCommands.cxx | |
parent | c2c222eba13476a95a362731528d85a3e76ed83a (diff) | |
download | CMake-c8deeac68f1462461a464acd6d2c2728b9a293c2.zip CMake-c8deeac68f1462461a464acd6d2c2728b9a293c2.tar.gz CMake-c8deeac68f1462461a464acd6d2c2728b9a293c2.tar.bz2 |
cmCommand refactor: cmSubdirDependsCommand
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index cd1b5af..f71be0d 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -320,8 +320,7 @@ void GetProjectCommands(cmState* state) "output_required_files", cmOutputRequiredFilesCommand, cmPolicies::CMP0032, "The output_required_files command should not be called; see CMP0032."); state->AddDisallowedCommand( - "subdir_depends", cm::make_unique<cmSubdirDependsCommand>(), - cmPolicies::CMP0029, + "subdir_depends", cmSubdirDependsCommand, cmPolicies::CMP0029, "The subdir_depends command should not be called; see CMP0029."); state->AddDisallowedCommand( "utility_source", cm::make_unique<cmUtilitySourceCommand>(), |