aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_import.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:29:11 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:46 -0700
commit3f76b9e53d48e34960bb5947bbbb880ac806281b (patch)
treee9ecddfe9b170f105e3ba58e7137f8ffa845fc13 /toolsrc/src/commands_import.cpp
parent402552ef934d30c923e633daadc59ff853115df2 (diff)
downloadvcpkg-3f76b9e53d48e34960bb5947bbbb880ac806281b.tar.gz
vcpkg-3f76b9e53d48e34960bb5947bbbb880ac806281b.zip
vcpkg_paths -> VcpkgPaths
Diffstat (limited to 'toolsrc/src/commands_import.cpp')
-rw-r--r--toolsrc/src/commands_import.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_import.cpp b/toolsrc/src/commands_import.cpp
index f0825749b..eb140604a 100644
--- a/toolsrc/src/commands_import.cpp
+++ b/toolsrc/src/commands_import.cpp
@@ -58,7 +58,7 @@ namespace vcpkg::Commands::Import
copy_files_into_directory(debug_binaries.libs, destination_path / "debug" / "lib");
}
- static void do_import(const vcpkg_paths& paths, const fs::path& include_directory, const fs::path& project_directory, const BinaryParagraph& control_file_data)
+ static void do_import(const VcpkgPaths& paths, const fs::path& include_directory, const fs::path& project_directory, const BinaryParagraph& control_file_data)
{
fs::path library_destination_path = paths.package_dir(control_file_data.spec);
fs::create_directory(library_destination_path);
@@ -68,7 +68,7 @@ namespace vcpkg::Commands::Import
std::ofstream(control_file_path) << control_file_data;
}
- void perform_and_exit(const VcpkgCmdArguments& args, const vcpkg_paths& paths)
+ void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths)
{
static const std::string example = Commands::Help::create_example_string(R"(import C:\path\to\CONTROLfile C:\path\to\includedir C:\path\to\projectdir)");
args.check_exact_arg_count(3, example);