فهرست منبع

Merge pull request #64963 from V-Sekai/vs_proj_gen_fix

Correct output file names for Visual Studio project generation
Rémi Verschelde 3 سال پیش
والد
کامیت
c7b5c90881
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      methods.py

+ 1 - 1
methods.py

@@ -705,7 +705,7 @@ def generate_vs_project(env, num_jobs):
             # required for Visual Studio to understand that it needs to generate an NMAKE
             # project. Do not modify without knowing what you are doing.
             PLATFORMS = ["Win32", "x64"]
-            PLATFORM_IDS = ["32", "64"]
+            PLATFORM_IDS = ["x86_32", "x86_64"]
             CONFIGURATIONS = ["debug", "release", "release_debug"]
             CONFIGURATION_IDS = ["tools", "opt", "opt.tools"]