Skip to content

Commit

Permalink
2.38.6更新
Browse files Browse the repository at this point in the history
  • Loading branch information
MKXJun committed Jul 20, 2024
1 parent 7d8950e commit 273f547
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions MarkdownFiles/Updates/Updates.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
- 中版本号 项目添加
- 小版本号 项目调整(随中版本号添加归零)

2024/7/20 Ver2.38.6

- 修复Win7下Common项目的编译问题

2023/12/12 Ver2.38.5

- 修复项目39的模型读取问题
Expand Down
3 changes: 3 additions & 0 deletions Project 19-/Common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ cmake_minimum_required(VERSION 3.14)
set(CMAKE_CXX_STANDARD 17)
add_compile_options("$<$<CXX_COMPILER_ID:MSVC>:/utf-8>")
add_compile_definitions(UNICODE _UNICODE)
if (WIN7_SYSTEM_SUPPORT MATCHES ON)
add_compile_definitions(_WIN32_WINNT=0x601)
endif()

aux_source_directory(. COMMON_SRCS)
file(GLOB COMMON_HEADERS ./*.h)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DirectX11 With Windows SDK教程演示项目

![](https://img.shields.io/badge/license-MIT-dddd00.svg) [![](https://img.shields.io/badge/Ver-2.38.5-519dd9.svg)](https://github.com/MKXJun/DirectX11-With-Windows-SDK/blob/master/MarkdownFiles/Updates/Updates.md)
![](https://img.shields.io/badge/license-MIT-dddd00.svg) [![](https://img.shields.io/badge/Ver-2.38.6-519dd9.svg)](https://github.com/MKXJun/DirectX11-With-Windows-SDK/blob/master/MarkdownFiles/Updates/Updates.md)

**现代DX11系列教程:使用Windows SDK(C++)开发Direct3D 11.x**

Expand Down Expand Up @@ -49,7 +49,7 @@
![](MarkdownFiles/001.png)

> **注意:**
> 1. **目前教程仅支持VS2017(或平台工具集v141)及更高版本!**
> 1. **目前教程仅支持VS2017(或平台工具集v141)及更高版本,且必须使用Win10 SDK**
> 2. **由于Assimp不支持Win32(x86),本项目仅支持64位系统**
> 3. **Win7打开需要安装Service Pack 1以及KB2670838补丁**
Expand Down Expand Up @@ -100,7 +100,7 @@ Project 31

## 最近更新

- 2023/12/12 Ver2.38.5
- 修复项目39的模型读取问题
- 2024/7/20 Ver2.38.6
- 修复Win7下Common项目的编译问题

**[历史更新记录](MarkdownFiles/Updates/Updates.md)**

0 comments on commit 273f547

Please sign in to comment.