mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-02-17 18:02:20 -07:00
ENH: gui: add win_arm64 support
jira: no-jira Change-Id: I43f66be1f264434a9bb26a9dd3fff1fb5c36d57c (cherry picked from commit 659f758e451d20d3a6c5505a2530be578dd584dd)
This commit is contained in:
parent
1f2b320b94
commit
7af9802688
1 changed files with 4 additions and 0 deletions
|
|
@ -2048,7 +2048,11 @@ std::map<std::string, std::string> GUI_App::get_extra_header()
|
|||
extra_headers.insert(std::make_pair("X-BBL-Client-Name", SLIC3R_APP_NAME));
|
||||
extra_headers.insert(std::make_pair("X-BBL-Client-Version", VersionInfo::convert_full_version(SLIC3R_VERSION)));
|
||||
#if defined(__WINDOWS__)
|
||||
#ifdef _M_X64
|
||||
extra_headers.insert(std::make_pair("X-BBL-OS-Type", "windows"));
|
||||
#else
|
||||
extra_headers.insert(std::make_pair("X-BBL-OS-Type", "win_arm64"));
|
||||
#endif
|
||||
#elif defined(__APPLE__)
|
||||
extra_headers.insert(std::make_pair("X-BBL-OS-Type", "macos"));
|
||||
#elif defined(__LINUX__)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue