C++/WinRT
Перейти к файлу
Manodasan Wignarajah 64d2a52dd5
Update NuGetCommand to use nuget.config (#1434)
2024-09-10 14:30:54 -07:00
.config/1espt
.github Use latest cache action (#1411) 2024-04-05 17:27:02 -05:00
.pipelines Update NuGetCommand to use nuget.config (#1434) 2024-09-10 14:30:54 -07:00
cppwinrt
docs
fast_fwd
mingw-support
natvis Spelling (#1412) 2024-04-06 07:17:18 -05:00
nuget Spelling (#1412) 2024-04-06 07:17:18 -05:00
prebuild
scratch
strings Add missing `<exception>` to `base_includes.h` (#1427) 2024-07-31 10:54:05 -05:00
test Spelling (#1412) 2024-04-06 07:17:18 -05:00
vsix Merge pull request 10563206 from dependabot/nuget/vsix/Newtonsoft.Json-13.0.1 into master 2024-04-16 19:50:15 +00:00
.gitattributes
.gitignore
CMakeLists.txt
Directory.Build.Props
Directory.Build.Targets
LICENSE
README.md
build_nuget.cmd
build_prior_projection.cmd
build_projection.cmd
build_test_all.cmd
build_vsix.cmd
compile_tests.cmd
cppwinrt.sln
cross-mingw-toolchain.cmake Spelling (#1412) 2024-04-06 07:17:18 -05:00
nuget.config Add NuGet config with public feed (#1433) 2024-09-05 10:22:01 -07:00
prepare_versionless_diffs.cmd
run_tests.cmd

README.md

The C++/WinRT language projection

C++/WinRT is an entirely standard C++ language projection for Windows Runtime (WinRT) APIs, implemented as a header-file-based library, and designed to provide you with first-class access to the modern Windows API. With C++/WinRT, you can author and consume Windows Runtime APIs using any standards-compliant C++17 compiler.

Building C++/WinRT

Don't build C++/WinRT yourself - just download the latest version here: https://aka.ms/cppwinrt/nuget

Working on the compiler

If you really want to build it yourself, the simplest way to do so is to run the build_test_all.cmd script in the root directory. Developers needing to work on the C++/WinRT compiler itself should go through the following steps to arrive at an efficient inner loop:

  • Open a dev command prompt pointing at the root of the repo.
  • Open the cppwinrt.sln solution.
  • Choose a configuration (x64, x86, Release, Debug) and build projects as needed.

If you are working on an ARM64 or ARM specific issue from an x64 or x86 host, you will need to instead:

  • Open the cppwinrt.sln solution
  • Build the x86 version of the "cppwinrt" project first
  • Switch to your preferred configuration and build the test binaries and run them in your test environment

Comparing Outputs

Comparing the output of the prior release and your current changes will help show the impact of any updates. Starting from a dev command prompt at the root of the repo after following the above build instructions:

  • Run build_projection.cmd in the dev command prompt
  • Run build_prior_projection.cmd in the dev command prompt as well
  • Run prepare_versionless_diffs.cmd which removes version stamps on both current and prior projection
  • Use a directory-level differencing tool to compare _build\$(arch)\$(flavor)\winrt and _reference\$(arch)\$(flavor)\winrt