houzhongjian
2024-11-07 a874b928e16320839315b9abcdf2cece1229a424
提交 | 用户 | 时间
137356 1 # 系统要求
741f65 2 Windows10 x64
c7c5ab 3
4 # 安装SmartEnergyStudio
5 SmartEnergyStudio提供标准的c++环境,python环境(python3.7.5及相关依赖包)
137356 6
7 # 安装VS2017专业版
8
c7c5ab 9 ## python开发
10 ![img.png](img.png)
11 ## C++开发
12 ![img_1.png](img_1.png)
22f6f1 13 ## 通用windows平台开发
14 ![img_5.png](img_5.png)
15 ## 使用C++的桌面开发
16 ![img_6.png](img_6.png)
17 ![img_7.png](img_7.png)
18
c7c5ab 19 # 配置环境变量
20 ## 配置INCLUDE
22f6f1 21 VS2017 include
137356 22 ```
23 D:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.16.27023\include
24 ```
22f6f1 25 python include
26 ```
27 C:\PYTHON\include
28 ```
29 windows include
30 ```
741f65 31 D:\Windows Kits\10\Include\10.0.17763.0\shared
22f6f1 32 ```
741f65 33 ```
34 D:\Windows Kits\10\Include\10.0.17763.0\ucrt
35 ```
36 ```
37 D:\Windows Kits\10\Include\10.0.17763.0\um
38 ```
39 ```
40 D:\Windows Kits\10\Include\10.0.17763.0\winrt
41 ```
42
43
22f6f1 44 MDK中间层 include
45 ```
46 C:\Program Files (x86)\IAIL.MDK.Midware\include
47 ```
48
c7c5ab 49 ![img_2.png](img_2.png)
50 ## 配置LIB
22f6f1 51 VS2017 LIB
137356 52 ```
53 D:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.16.27023\lib\x64
54 ```
22f6f1 55 python LIB
56 ```
57 C:\PYTHON\libs
58 ```
59
741f65 60 ```
61 windows LIB
62 ```
63 D:\Windows Kits\10\Lib\10.0.17763.0\ucrt\x64
64 ```
65 ```
66 D:\Windows Kits\10\Lib\10.0.17763.0\um\x64
67 ```
68
22f6f1 69 MDK中间层 LIB
70 ```
71 C:\Program Files (x86)\IAIL.MDK.Midware\lib
72 ```
73
c7c5ab 74 ![img_3.png](img_3.png)
75 ## 修改path配置cl
137356 76 ```
77 D:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.16.27023\bin\Hostx64\x64
78 ```
c7c5ab 79 ![img_4.png](img_4.png)