Skip to content

Commit

Permalink
Fea #61, 新增C11 Threads支持(VS17.8新功能)
Browse files Browse the repository at this point in the history
  • Loading branch information
mingkuang-Chuyu committed May 2, 2024
1 parent f3acb32 commit 245b5dd
Show file tree
Hide file tree
Showing 11 changed files with 1,467 additions and 10 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# EditorConfig is awesome: https://EditorConfig.org


# 代码文件尽可能的使用 UTF-8,因为英语字符占据大多数。
# 数据文件比如 XML,json统一缩进 2,因为外部规范往往如此

[*]
end_of_line = crlf
insert_final_newline = true
charset = utf-8-bom
indent_style = space
indent_size = 4

[*.{vcxproj,xml}]
indent_style = space
indent_size = 2
8 changes: 4 additions & 4 deletions Build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@
<!-- VC-LTL Rust crate 编译准备 -->
<Target Name="PrepareToCompileRustLanguageSupport">
<ItemGroup>
<RustTargetPlatform_x86 Include="$(SolutionDir)TargetPlatform\6.0.6000.0\lib\Win32\*ucrt.*;$(SolutionDir)TargetPlatform\6.0.6000.0\lib\Win32\*vcruntime.*;" />
<RustTargetPlatform_x64 Include="$(SolutionDir)TargetPlatform\6.0.6000.0\lib\x64\*ucrt.*;$(SolutionDir)TargetPlatform\6.0.6000.0\lib\x64\*vcruntime.*;" />
<RustTargetPlatform_arm64 Include="$(SolutionDir)TargetPlatform\10.0.10240.0\lib\ARM64\*ucrt.*;$(SolutionDir)TargetPlatform\10.0.10240.0\lib\ARM64\*vcruntime.*;" />
<RustTargetPlatform_x86 Include="$(SolutionDir)TargetPlatform\6.0.6000.0\lib\Win32\*ucrt.lib;$(SolutionDir)TargetPlatform\6.0.6000.0\lib\Win32\*vcruntime.lib;" />
<RustTargetPlatform_x64 Include="$(SolutionDir)TargetPlatform\6.0.6000.0\lib\x64\*ucrt.lib;$(SolutionDir)TargetPlatform\6.0.6000.0\lib\x64\*vcruntime.lib;" />
<RustTargetPlatform_arm64 Include="$(SolutionDir)TargetPlatform\10.0.10240.0\lib\ARM64\*ucrt.lib;$(SolutionDir)TargetPlatform\10.0.10240.0\lib\ARM64\*vcruntime.lib;" />
<RustTargetPlatform_Common Include="$(SolutionDir)Readme.md;$(SolutionDir)LICENSE;" />
</ItemGroup>

Expand Down Expand Up @@ -210,4 +210,4 @@
WorkingDirectory="$(MSBuildThisFileDirectory)Tools\$(WindowsTargetPlatformMinVersion)\$(Platform)"
Condition="Exists('$(MSBuildThisFileDirectory)Tools\$(WindowsTargetPlatformMinVersion)\$(Platform)\Build_libucrt_shared.cmd')"/>
</Target>
</Project>
</Project>
Loading

0 comments on commit 245b5dd

Please sign in to comment.