mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00:00
feat(gx): add directxmath for MinGW
This commit is contained in:
parent
0d09dee4b3
commit
3e77eb935a
51 changed files with 49251 additions and 12 deletions
33
vendor/directxmath-3.19.0/.nuget/directxmath.nuspec
vendored
Normal file
33
vendor/directxmath-3.19.0/.nuget/directxmath.nuspec
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata minClientVersion="2.8.6">
|
||||
<id>directxmath</id>
|
||||
<version>0.0.0-SpecifyVersionOnCommandline</version>
|
||||
<title>DirectXMath</title>
|
||||
<authors>Microsoft</authors>
|
||||
<owners>microsoft,directxtk</owners>
|
||||
<summary>DirectXMath is an all inline SIMD C++ linear algebra library for use in games and graphics apps.</summary>
|
||||
<description>The DirectXMath API provides SIMD-friendly C++ types and functions for common linear algebra and graphics math operations common to DirectX applications. The library provides optimized versions for Windows 32-bit (x86), Windows 64-bit (x64), and Windows on ARM through SSE2 and ARM-NEON intrinsics support in the Visual Studio compiler.</description>
|
||||
<releaseNotes>Matches the February 2024 release.</releaseNotes>
|
||||
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=615560</projectUrl>
|
||||
<repository type="git" url="https://github.com/microsoft/DirectXMath.git" />
|
||||
<icon>images\icon.jpg</icon>
|
||||
<readme>docs\README.md</readme>
|
||||
<license type="expression">MIT</license>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
|
||||
<tags>C++ native DirectX math nativepackage</tags>
|
||||
</metadata>
|
||||
|
||||
<files>
|
||||
|
||||
<file target="docs" src="*.md" />
|
||||
|
||||
<file target="include" src="Inc\*" />
|
||||
|
||||
<file src=".nuget/directxmath.targets" target="build\native" />
|
||||
|
||||
<file src=".nuget/icon.jpg" target="images\" />
|
||||
|
||||
</files>
|
||||
</package>
|
||||
11
vendor/directxmath-3.19.0/.nuget/directxmath.targets
vendored
Normal file
11
vendor/directxmath-3.19.0/.nuget/directxmath.targets
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<ItemDefinitionGroup>
|
||||
<ClCompile>
|
||||
<PreprocessorDefinitions>HAS_DIRECTXMATH;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)..\..\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
</ItemDefinitionGroup>
|
||||
|
||||
</Project>
|
||||
BIN
vendor/directxmath-3.19.0/.nuget/icon.jpg
vendored
Normal file
BIN
vendor/directxmath-3.19.0/.nuget/icon.jpg
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.4 KiB |
6
vendor/directxmath-3.19.0/.nuget/signconfig.xml
vendored
Normal file
6
vendor/directxmath-3.19.0/.nuget/signconfig.xml
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<SignConfigXML>
|
||||
<job dest="__OUTPATHROOT__" certSubject="NuGet" jobname="NugetSigningTest">
|
||||
<file src="__INPATHROOT__\directxmath*.nupkg" signType="CP-401405" dest="__OUTPATHROOT__\directxmath*.nupkg" />
|
||||
</job>
|
||||
</SignConfigXML>
|
||||
Loading…
Add table
Add a link
Reference in a new issue