diff options
author | Valery Zhuk <zhuk.valeriy.98@gmail.com> | 2023-07-09 14:19:38 +0300 |
---|---|---|
committer | Valery Zhuk <zhuk.valeriy.98@gmail.com> | 2023-09-02 19:29:05 +0300 |
commit | 6158578087ff576ff7ad26670fbe3ceedc593f66 (patch) | |
tree | beb82a49f322734b4ff6ab1dd885fac96e5257bb /SConstruct | |
parent | d2ae309f2cec2000257c1ff203a64170fc146b17 (diff) | |
download | redot-engine-6158578087ff576ff7ad26670fbe3ceedc593f66.tar.gz |
fix build options configuration for Visual Studio projects
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 7d4c8975e7..df750beae4 100644 --- a/SConstruct +++ b/SConstruct @@ -978,7 +978,7 @@ if selected_platform in platform_list: print("Error: The `vsproj` option is only usable on Windows with Visual Studio.") Exit(255) env["CPPPATH"] = [Dir(path) for path in env["CPPPATH"]] - methods.generate_vs_project(env, GetOption("num_jobs"), env["vsproj_name"]) + methods.generate_vs_project(env, ARGUMENTS, env["vsproj_name"]) methods.generate_cpp_hint_file("cpp.hint") # Check for the existence of headers |