forked from sonyps5201314/msvcr14x
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Opt,ntdll、boost-math改用模块引用、YY-Thunks改用nuget引用
- Loading branch information
1 parent
0cccd48
commit 7f72876
Showing
30 changed files
with
46 additions
and
386 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[submodule "ThirdParty/ntdll"] | ||
path = ThirdParty/ntdll | ||
url = https://github.com/sonyps5201314/ntdll.git | ||
[submodule "ThirdParty/boost-math"] | ||
path = ThirdParty/boost-math | ||
url = https://github.com/boostorg/math.git |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup Condition="'$(MSBuildProjectExtension)' == '.vcxproj'"> | ||
<!--强制引入PackageReferences--> | ||
<ProjectCapability Include="PackageReferences" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition="'$(MSBuildProjectExtension)' == '.vcxproj'"> | ||
<!--指定自己的体系为native--> | ||
<NuGetTargetMoniker Condition="'$(NuGetTargetMoniker)' == ''">native,Version=v0.0</NuGetTargetMoniker> | ||
<!--如果不指定这一行,那么arm64平台会找不到RID而失败--> | ||
<RuntimeIdentifiers Condition="'$(RuntimeIdentifiers)' == ''">win;win-x86;win-x64;win-arm;win-arm64</RuntimeIdentifiers> | ||
<WindowsTargetPlatformMinVersion>5.1.2600</WindowsTargetPlatformMinVersion> | ||
</PropertyGroup> | ||
<!--从兼容性考虑,继续向上搜索 Directory.Build.props--> | ||
<PropertyGroup> | ||
<DirectoryBuildPropsPath>$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))</DirectoryBuildPropsPath> | ||
</PropertyGroup> | ||
<Import Project="$(DirectoryBuildPropsPath)" Condition="'$(DirectoryBuildPropsPath)' != ''"/> | ||
<ItemGroup> | ||
<PackageReference Include="YY-Thunks"> | ||
<Version>1.1.5-Beta3</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<IncludePath>$(MSBuildThisFileDirectory)\ThirdParty\ntdll\include;$(MSBuildThisFileDirectory)\ThirdParty\boost-math\include;$(IncludePath)</IncludePath> | ||
</PropertyGroup> | ||
<!--从兼容性考虑,继续向上搜索 Directory.Build.targets--> | ||
<PropertyGroup> | ||
<DirectoryBuildTargetsPath>$([MSBuild]::GetPathOfFileAbove('Directory.Build.targets', '$(MSBuildThisFileDirectory)../'))</DirectoryBuildTargetsPath> | ||
</PropertyGroup> | ||
<Import Project="$(DirectoryBuildTargetsPath)" Condition="'$(DirectoryBuildTargetsPath)' != ''"/> | ||
</Project> |
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.