========================================================編譯前的準備===========================================================
1.安裝Perl
2.確保有Visual Studio
===============================================================================================================================

===============================================================編譯靜態庫===============================================================
1.編譯32位的Debug靜態庫
1.1 打開"x86 Native Tools Command Prompt for VS 2022"命令行工具
1.2 進入到openssl的源代碼路徑中
1.3 輸入[Perl Configure debug-VC-WIN32 no-shared no-asm --prefix="C:/msvc32_static_debug_build"]
1.4 輸入"nmake"進行編譯
1.5 編譯完成後,輸入"nmake install"進行安裝即可

2.編譯32位的Release靜態庫
2.1 打開"x86 Native Tools Command Prompt for VS 2022"命令行工具
2.2 進入到openssl的源代碼路徑中
2.3 輸入[Perl Configure VC-WIN32 no-shared no-asm --prefix="C:/msvc32_static_release_build"]
2.4 輸入"nmake"進行編譯
2.5 編譯完成後,輸入"nmake install"進行安裝即可

3.編譯64位的Debug靜態庫
3.1 打開"x64 Native Tools Command Prompt for VS 2022"命令行工具
3.2 進入到openssl的源代碼路徑中
3.3 輸入[Perl Configure debug-VC-WIN64A no-shared no-asm --prefix="C:/msvc64_static_debug_build"]
3.4 輸入"nmake"進行編譯
3.5 編譯完成後,輸入"nmake install"進行安裝即可

4.編譯64位的Release靜態庫
4.1 打開"x64 Native Tools Command Prompt for VS 2022"命令行工具
4.2 進入到openssl的源代碼路徑中
4.3 輸入[Perl Configure VC-WIN64A no-shared no-asm --prefix="C:/msvc64_static_release_build"]
4.4 輸入"nmake"進行編譯
4.5 編譯完成後,輸入"nmake install"進行安裝即可
========================================================================================================================================

===============================================================編譯動態庫===============================================================
1.編譯32位的Debug動態庫
1.1 打開"x86 Native Tools Command Prompt for VS 2022"命令行工具
1.2 進入到openssl的源代碼路徑中
1.3 輸入[Perl Configure debug-VC-WIN32 shared no-asm --prefix="C:/msvc32_shared_debug_build"]
1.4 輸入"nmake"進行編譯
1.5 編譯完成後,輸入"nmake install"進行安裝即可

2.編譯32位的Release動態庫
2.1 打開"x86 Native Tools Command Prompt for VS 2022"命令行工具
2.2 進入到openssl的源代碼路徑中
2.3 輸入[Perl Configure VC-WIN32 shared no-asm --prefix="C:/msvc32_shared_release_build"]
2.4 輸入"nmake"進行編譯
2.5 編譯完成後,輸入"nmake install"進行安裝即可

3.編譯64位的Debug動態庫
3.1 打開"x64 Native Tools Command Prompt for VS 2022"命令行工具
3.2 進入到openssl的源代碼路徑中
3.3 輸入[Perl Configure debug-VC-WIN64A shared no-asm --prefix="C:/msvc64_shared_debug_build"]
3.4 輸入"nmake"進行編譯
3.5 編譯完成後,輸入"nmake install"進行安裝即可

4.編譯64位的Release動態庫
4.1 打開"x64 Native Tools Command Prompt for VS 2022"命令行工具
4.2 進入到openssl的源代碼路徑中
4.3 輸入[Perl Configure VC-WIN64A shared no-asm --prefix="C:/msvc64_shared_release_build"]
4.4 輸入"nmake"進行編譯
4.5 編譯完成後,輸入"nmake install"進行安裝即可
========================================================================================================================================