summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-08-27 21:55:52 +0200
committerGitHub <noreply@github.com>2022-08-27 21:55:52 +0200
commitc7b5c908814b830ad04c4e54c1e36da3a18aa52c (patch)
tree50a9e225680737b50a14ec798cce0583ea9e1664
parent0595ad79da021a62ca797f897c563ee0e5b56573 (diff)
parentd71b76e28f632dfd7e95f44865d07b582c22dae5 (diff)
Merge pull request #64963 from V-Sekai/vs_proj_gen_fix
Correct output file names for Visual Studio project generation
-rw-r--r--methods.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/methods.py b/methods.py
index 9b60d4251f..3a00aa12ca 100644
--- a/methods.py
+++ b/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"]