diff options
| author | Francois Rivard <30326057+RoguePointer80@users.noreply.github.com> | 2020-09-27 21:18:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-27 18:18:27 -0700 |
| commit | 741c8cbecde77f771f8c05f00f59a436a2b4213b (patch) | |
| tree | 2c77fb7d283deb47a0ad612764d6dcc243f380b9 /toolsrc/src/vcpkg-test/binarycaching.cpp | |
| parent | 64a281b865f31cf846c1e36d635361c2eaa985f4 (diff) | |
| download | vcpkg-741c8cbecde77f771f8c05f00f59a436a2b4213b.tar.gz vcpkg-741c8cbecde77f771f8c05f00f59a436a2b4213b.zip | |
[vcpkg] Add compiler info to nuspec description (#13571)
* Add compiler info to nuspec description
* Run clang-format on some files
* Fix the unit tests
* [vcpkg] Clarify NuGet description to note 'CXX compiler'
* [vcpkg] Fix tests
Co-authored-by: frivard <frivard@coveo.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Diffstat (limited to 'toolsrc/src/vcpkg-test/binarycaching.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg-test/binarycaching.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/toolsrc/src/vcpkg-test/binarycaching.cpp b/toolsrc/src/vcpkg-test/binarycaching.cpp index 0b529f959..33f63e2ea 100644 --- a/toolsrc/src/vcpkg-test/binarycaching.cpp +++ b/toolsrc/src/vcpkg-test/binarycaching.cpp @@ -88,6 +88,11 @@ Build-Depends: bzip ipa.abi_info.get()->package_abi = "packageabi"; std::string tripletabi("tripletabi"); ipa.abi_info.get()->triplet_abi = tripletabi; + Build::CompilerInfo compiler_info; + compiler_info.hash = "compilerhash"; + compiler_info.id = "compilerid"; + compiler_info.version = "compilerversion"; + ipa.abi_info.get()->compiler_info = compiler_info; NugetReference ref(ipa); @@ -110,6 +115,9 @@ Build-Depends: bzip a spiffy compression library wrapper Version: 1.5 +Triplet: x64-windows +CXX Compiler id: compilerid +CXX Compiler version: compilerversion Triplet/Compiler hash: tripletabi Features: a, b Dependencies: @@ -139,6 +147,9 @@ Dependencies: a spiffy compression library wrapper Version: 1.5 +Triplet: x64-windows +CXX Compiler id: compilerid +CXX Compiler version: compilerversion Triplet/Compiler hash: tripletabi Features: a, b Dependencies: @@ -168,6 +179,9 @@ Dependencies: a spiffy compression library wrapper Version: 1.5 +Triplet: x64-windows +CXX Compiler id: compilerid +CXX Compiler version: compilerversion Triplet/Compiler hash: tripletabi Features: a, b Dependencies: |
