diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-04-30 04:09:05 -0700 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2017-05-01 17:24:54 -0700 |
| commit | 20657a29ca8cc2aec104caca7703fcd72bf5746e (patch) | |
| tree | 800fc0675cf6e184303921c8adea8ea8fc297e56 /toolsrc/src/commands_ci.cpp | |
| parent | a0d5b944953f14cb58121e76f7fe6140e8134ca3 (diff) | |
| download | vcpkg-20657a29ca8cc2aec104caca7703fcd72bf5746e.tar.gz vcpkg-20657a29ca8cc2aec104caca7703fcd72bf5746e.zip | |
[vcpkg] Split vcpkg::Commands::Build -> vcpkg::Build, vcpkg::Commands::BuildCommand
Diffstat (limited to 'toolsrc/src/commands_ci.cpp')
| -rw-r--r-- | toolsrc/src/commands_ci.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toolsrc/src/commands_ci.cpp b/toolsrc/src/commands_ci.cpp index 91d1ff01a..398f6a5f4 100644 --- a/toolsrc/src/commands_ci.cpp +++ b/toolsrc/src/commands_ci.cpp @@ -1,6 +1,7 @@ #include "pch.h" #include "Paragraphs.h" +#include "vcpkg_Build.h" #include "vcpkg_Chrono.h" #include "vcpkg_Commands.h" #include "vcpkg_Dependencies.h" @@ -71,7 +72,7 @@ namespace vcpkg::Commands::CI { System::println("Building package %s... ", display_name); auto&& source_paragraph = action.any_paragraph.source_paragraph.value_or_exit(VCPKG_LINE_INFO); - const auto result_ex = Commands::Build::build_package( + const auto result_ex = Build::build_package( source_paragraph, action.spec, paths, paths.port_dir(action.spec), status_db); const auto result = result_ex.code; |
