diff options
author | Regina Pfeifer <regina@mailbox.org> | 2019-09-18 15:30:04 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-09-21 03:11:08 (GMT) |
commit | fdc3ba45832456fc17cff58850b16a02cee30e7c (patch) | |
tree | 3b4cd2b0c96e45d9c425077f1263af72d628431d /Source/cmCommands.cxx | |
parent | ebb9346490741ddc2ce6f552bc1be57dfc730cfa (diff) | |
download | CMake-fdc3ba45832456fc17cff58850b16a02cee30e7c.zip CMake-fdc3ba45832456fc17cff58850b16a02cee30e7c.tar.gz CMake-fdc3ba45832456fc17cff58850b16a02cee30e7c.tar.bz2 |
cmExportCommand: 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 262590b..f569c2b 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -275,7 +275,7 @@ void GetProjectCommands(cmState* state) state->AddBuiltinCommand("add_compile_options", cmAddCompileOptionsCommand); state->AddBuiltinCommand("aux_source_directory", cmAuxSourceDirectoryCommand); - state->AddBuiltinCommand("export", cm::make_unique<cmExportCommand>()); + state->AddBuiltinCommand("export", cmExportCommand); state->AddBuiltinCommand("fltk_wrap_ui", cmFLTKWrapUICommand); state->AddBuiltinCommand("include_external_msproject", cmIncludeExternalMSProjectCommand); |