diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-18 15:37:04 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-21 03:13:30 (GMT) |
commit | 77aa75b8dc76fce51973d6337473fb388b855ea4 (patch) | |
tree | 09f285d95b0fc208a0491d2317c5f730e4c725cd /Source/cmCommands.cxx | |
parent | 9c521088df3c45764fd9bfc1c10c9bfe63b63e78 (diff) | |
download | CMake-77aa75b8dc76fce51973d6337473fb388b855ea4.zip CMake-77aa75b8dc76fce51973d6337473fb388b855ea4.tar.gz CMake-77aa75b8dc76fce51973d6337473fb388b855ea4.tar.bz2 |
cmProjectCommand: Port away from cmCommand
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index a975856..d01972d 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -238,7 +238,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("install_files", cmInstallFilesCommand); state->AddBuiltinCommand("install_targets", cmInstallTargetsCommand); state->AddBuiltinCommand("link_directories", cmLinkDirectoriesCommand); - state->AddBuiltinCommand("project", cm::make_unique<cmProjectCommand>()); + state->AddBuiltinCommand("project", cmProjectCommand); state->AddBuiltinCommand("set_source_files_properties", cmSetSourceFilesPropertiesCommand); state->AddBuiltinCommand("set_target_properties", |