2017-04-03 10:44:14 -07:00
|
|
|
#include "pch.h"
|
2017-04-27 18:08:52 -07:00
|
|
|
|
2017-04-30 04:09:05 -07:00
|
|
|
#include "vcpkg_Build.h"
|
2017-04-03 10:44:14 -07:00
|
|
|
#include "vcpkg_Commands.h"
|
|
|
|
#include "vcpkg_System.h"
|
|
|
|
|
|
|
|
namespace vcpkg::Commands::Env
|
|
|
|
{
|
2017-04-03 16:29:11 -07:00
|
|
|
void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths, const Triplet& default_triplet)
|
2017-04-03 10:44:14 -07:00
|
|
|
{
|
2017-08-28 17:21:34 -07:00
|
|
|
static const std::string EXAMPLE = Commands::Help::create_example_string(R"(env --Triplet x64-windows)");
|
|
|
|
args.check_exact_arg_count(0, EXAMPLE);
|
2017-04-03 10:44:14 -07:00
|
|
|
args.check_and_get_optional_command_arguments({});
|
|
|
|
|
2017-08-28 17:21:34 -07:00
|
|
|
const auto pre_build_info = Build::PreBuildInfo::from_triplet_file(paths, default_triplet);
|
|
|
|
System::cmd_execute_clean(
|
|
|
|
Build::make_build_env_cmd(pre_build_info, paths.get_toolset(pre_build_info.platform_toolset)) + L" && cmd");
|
2017-04-03 10:44:14 -07:00
|
|
|
|
|
|
|
Checks::exit_success(VCPKG_LINE_INFO);
|
|
|
|
}
|
|
|
|
}
|