diff options
Diffstat (limited to 'toolsrc/include/vcpkg_System.h')
| -rw-r--r-- | toolsrc/include/vcpkg_System.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/toolsrc/include/vcpkg_System.h b/toolsrc/include/vcpkg_System.h index 2ea0241f6..65f80ae6d 100644 --- a/toolsrc/include/vcpkg_System.h +++ b/toolsrc/include/vcpkg_System.h @@ -23,7 +23,7 @@ namespace vcpkg::System ExitCodeAndOutput cmd_execute_and_capture_output(const CWStringView cmd_line); - std::wstring create_powershell_script_cmd(const fs::path& script_path, const CWStringView args = L""); + std::wstring create_powershell_script_cmd(const fs::path& script_path, const CWStringView args = Strings::WEMPTY); enum class Color { @@ -32,6 +32,7 @@ namespace vcpkg::System warning = 14, }; + void println(); void print(const CStringView message); void println(const CStringView message); void print(const Color c, const CStringView message); @@ -77,9 +78,11 @@ namespace vcpkg::System CPUArchitecture get_host_processor(); - const fs::path& get_ProgramFiles_32_bit(); + std::vector<CPUArchitecture> get_supported_host_architectures(); - const fs::path& get_ProgramFiles_platform_bitness(); + const fs::path& get_program_files_32_bit(); + + const fs::path& get_program_files_platform_bitness(); } namespace vcpkg::Debug |
