diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-10 12:57:49 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-21 18:06:51 -0700 |
| commit | 92cf32d59a5b3a1fd68bce4edf5c5d576e637678 (patch) | |
| tree | 7ac33576ea94f3bfaa234a5cbc82d7feba31eb50 /toolsrc/src/commands_available_commands.cpp | |
| parent | 47322f74bdefea394fdd07989a9535c35caeb8a3 (diff) | |
| download | vcpkg-92cf32d59a5b3a1fd68bce4edf5c5d576e637678.tar.gz vcpkg-92cf32d59a5b3a1fd68bce4edf5c5d576e637678.zip | |
Add skeleton code for `vcpkg export`
Diffstat (limited to 'toolsrc/src/commands_available_commands.cpp')
| -rw-r--r-- | toolsrc/src/commands_available_commands.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/toolsrc/src/commands_available_commands.cpp b/toolsrc/src/commands_available_commands.cpp index e4c5135c7..4fdccff1d 100644 --- a/toolsrc/src/commands_available_commands.cpp +++ b/toolsrc/src/commands_available_commands.cpp @@ -11,7 +11,8 @@ namespace vcpkg::Commands { "remove", &Remove::perform_and_exit }, { "build", &Build::perform_and_exit }, { "env", &Env::perform_and_exit }, - { "build-external", &BuildExternal::perform_and_exit } + { "build-external", &BuildExternal::perform_and_exit }, + { "export", &Export::perform_and_exit }, }; return t; } @@ -31,7 +32,7 @@ namespace vcpkg::Commands { "create", &Create::perform_and_exit }, { "import", &Import::perform_and_exit }, { "cache", &Cache::perform_and_exit }, - { "portsdiff", &PortsDiff::perform_and_exit } + { "portsdiff", &PortsDiff::perform_and_exit }, }; return t; } |
