本 Wiki 开启了 HTTPS。但由于同 IP 的 Blog 也开启了 HTTPS,因此本站必须要支持 SNI 的浏览器才能浏览。为了兼容一部分浏览器,本站保留了 HTTP 作为兼容。如果您的浏览器支持 SNI,请尽量通过 HTTPS 访问本站,谢谢!
这里会显示出您选择的修订版和当前版本之间的差别。
后一修订版 | 前一修订版 | ||
cg:books:3d_engine_dev:chpt_2 [2024/11/30 13:51] – 创建 codinghare | cg:books:3d_engine_dev:chpt_2 [2024/11/30 15:02] (当前版本) – [安装 Conan] codinghare | ||
---|---|---|---|
行 2: | 行 2: | ||
// Notes for Chapter 2// | // Notes for Chapter 2// | ||
---- | ---- | ||
+ | ====平台支持==== | ||
+ | * //Win 11// | ||
+ | * //Ubuntu 22.04.1 LTS// | ||
+ | ====Windows Setup==== | ||
+ | ===安装 VS-code=== | ||
+ | * 安装时,确认 '' | ||
+ | * 常用快捷键 | ||
+ | <code bash> | ||
+ | # Debug & Run | ||
+ | Ctrl + Shift + D | ||
+ | # Extensions | ||
+ | Ctrl + Shift + X | ||
+ | </ | ||
+ | ==常用插件== | ||
+ | * C/C++ Extension Pack | ||
+ | * Cmake / Cmake Tools | ||
+ | ===编译器版本=== | ||
+ | * Visual C++ Compiler (Microsoft Visual C++ Redistributable for Visual Studio 2022) | ||
+ | * https:// | ||
+ | * 需要运行 Developer Command Prompt(DCP) | ||
+ | * 在 DCP 中定位到项目目录,使用 '' | ||
+ | ===安装 CMake=== | ||
+ | * https:// | ||
+ | * 确保 '' | ||
+ | * 检查版本 '' | ||
+ | ===安装 Conan=== | ||
+ | - 安装 Python 3.11.4 https:// | ||
+ | - 安装 conan | ||
+ | <code python> | ||
+ | # 安装 | ||
+ | pip install conan==1.61.0 | ||
+ | # 检查 | ||
+ | conan -v | ||
+ | </ | ||
+ | <WRAP center round info 100%> | ||
+ | * 1.61.0 版本 conan 与 3.12 以上 python 版本冲突。 | ||
+ | * 确保 python 的 script 目录添加到了 Path (user) 中 | ||
+ | </ | ||
+ | |||
+ |