7-Zip 21.06 (arm64) : Copyright (c) 1999-2021 Igor Pavlov : 2021-11-24
Windows 10.0 22000
ARM64 0 805.D0E cpus:8 128T f:804EB8C1004
LE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE KeyboardMappingScheme> | |
<!-- Written by Qt Creator 2.5.2, 2012-08-18T19:03:36. --> | |
<mapping> | |
<shortcut id="QtCreator.ReturnToEditor"> | |
<key value="Esc"/> | |
</shortcut> | |
<shortcut id="QtCreator.New"> | |
<key value="Ctrl+N"/> | |
</shortcut> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying | |
# file Copyright.txt or https://cmake.org/licensing for details. | |
# Run this script on a Windows host to generate Qt binaries. | |
# Set the PATH environment variable to contain the locations of cmake and git. | |
if ("$ENV{VSCMD_ARG_TGT_ARCH}" STREQUAL "x64") | |
set(arch "x86_64") | |
elseif ("$ENV{VSCMD_ARG_TGT_ARCH}" STREQUAL "x86") | |
set(arch "i386") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying | |
# file Copyright.txt or https://cmake.org/licensing for details. | |
# Run this script on a Windows host to generate Qt binaries. | |
# Set the PATH environment variable to contain the locations of cmake and git. | |
if ("$ENV{VSCMD_ARG_TGT_ARCH}" STREQUAL "x64") | |
set(arch "x86_64") | |
elseif ("$ENV{VSCMD_ARG_TGT_ARCH}" STREQUAL "x86") | |
set(arch "i386") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Program Files (Arm)\7-Zip>7z b | |
7-Zip 21.04 beta (arm64) : Copyright (c) 1999-2021 Igor Pavlov : 2021-11-02 | |
Windows 10.0 22000 | |
ARM64 0 805.D0E cpus:8 128T f:804EB8C1004 | |
LE | |
1T CPU Freq (MHz): 1931 2549 2550 2493 2488 2549 2545 | |
4T CPU Freq (MHz): 346% 1903 354% 1952 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Naur old/src/plugins/scenegraph/d3d12/qsgd3d12engine.cpp new/src/plugins/scenegraph/d3d12/qsgd3d12engine.cpp | |
--- old/src/plugins/scenegraph/d3d12/qsgd3d12engine.cpp 2020-10-27 09:02:12.000000000 +0100 | |
+++ new/src/plugins/scenegraph/d3d12/qsgd3d12engine.cpp 2021-06-17 18:41:00.815070000 +0200 | |
@@ -37,6 +37,7 @@ | |
** | |
****************************************************************************/ | |
+#include <initguid.h> | |
#include "qsgd3d12engine_p.h" | |
#include "qsgd3d12engine_p_p.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (CMAKE_ARGC LESS 4) | |
message("Usage cmake -P " ${CMAKE_ARGV2} " <platform e.g. mingw/msvc> <module;list>") | |
return() | |
endif() | |
if (CMAKE_ARGV3 STREQUAL "clang") | |
set(ENV{CC} clang) | |
set(ENV{CXX} clang++) | |
endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (CMAKE_ARGC LESS 4) | |
message("Usage cmake -P " ${CMAKE_ARGV2} " <platform e.g. mingw/msvc>") | |
return() | |
endif() | |
if (CMAKE_ARGV3 STREQUAL "mingw") | |
set(QT_PLATFORM mingw_64) | |
elseif(CMAKE_ARGV3 STREQUAL "msvc") | |
set(QT_PLATFORM msvc2019_64) | |
endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach(file cache-v2 cmakeFiles-v1 codemodel-v2) | |
file(WRITE "${CMAKE_BINARY_DIR}/.cmake/api/v1/query/${file}" "") | |
endforeach() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set(qt_version "5.15.1") | |
string(REPLACE "." "" qt_version_dotless "${qt_version}") | |
if (WIN32) | |
set(url_os "windows_x86") | |
if (CMAKE_ARG_3 STREQUAL "mingw") | |
set(qt_package_arch_suffix "win64_mingw81") | |
set(qt_dir_prefix "${qt_version}/mingw81_64") | |
set(qt_package_suffix "-Windows-Windows_10-Mingw-Windows-Windows_10-X86_64") | |
else() |