From 8f1a9d25885e260bb29652540304f3294c41fc3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Mon, 19 Feb 2024 19:07:03 +0100 Subject: [PATCH] fix(ProGen): vs160 templates --- .../vs160/Win32/executable/debug_shared-Win32.template | 5 ++++- .../vs160/Win32/executable/debug_shared-x64.template | 5 ++++- .../vs160/Win32/executable/debug_static_md-Win32.template | 5 ++++- .../vs160/Win32/executable/debug_static_md-x64.template | 5 ++++- .../vs160/Win32/executable/debug_static_mt-Win32.template | 5 ++++- .../vs160/Win32/executable/debug_static_mt-x64.template | 5 ++++- .../vs160/Win32/executable/release_shared-Win32.template | 3 +++ .../vs160/Win32/executable/release_shared-x64.template | 3 +++ .../vs160/Win32/executable/release_static_md-Win32.template | 3 +++ .../vs160/Win32/executable/release_static_md-x64.template | 3 +++ .../vs160/Win32/executable/release_static_mt-Win32.template | 3 +++ .../vs160/Win32/executable/release_static_mt-x64.template | 3 +++ .../vs160/Win32/library/debug_shared-Win32.template | 5 ++++- .../templates/vs160/Win32/library/debug_shared-x64.template | 5 ++++- .../vs160/Win32/library/debug_static_md-Win32.template | 3 +++ .../vs160/Win32/library/debug_static_md-x64.template | 3 +++ .../vs160/Win32/library/debug_static_mt-Win32.template | 3 +++ .../vs160/Win32/library/debug_static_mt-x64.template | 3 +++ .../vs160/Win32/library/release_shared-Win32.template | 3 +++ .../vs160/Win32/library/release_shared-x64.template | 3 +++ .../vs160/Win32/library/release_static_md-Win32.template | 3 +++ .../vs160/Win32/library/release_static_md-x64.template | 3 +++ .../vs160/Win32/library/release_static_mt-Win32.template | 3 +++ .../vs160/Win32/library/release_static_mt-x64.template | 3 +++ .../templates/vs160/Win32/plugin/debug_shared-Win32.template | 5 ++++- .../templates/vs160/Win32/plugin/debug_shared-x64.template | 5 ++++- .../vs160/Win32/plugin/release_shared-Win32.template | 3 +++ .../templates/vs160/Win32/plugin/release_shared-x64.template | 3 +++ .../vs160/Win32/testsuite/debug_shared-Win32.template | 5 ++++- .../vs160/Win32/testsuite/debug_shared-x64.template | 5 ++++- .../vs160/Win32/testsuite/debug_static_md-Win32.template | 5 ++++- .../vs160/Win32/testsuite/debug_static_md-x64.template | 5 ++++- .../vs160/Win32/testsuite/debug_static_mt-Win32.template | 5 ++++- .../vs160/Win32/testsuite/debug_static_mt-x64.template | 5 ++++- .../vs160/Win32/testsuite/release_shared-Win32.template | 3 +++ .../vs160/Win32/testsuite/release_shared-x64.template | 3 +++ .../vs160/Win32/testsuite/release_static_md-Win32.template | 3 +++ .../vs160/Win32/testsuite/release_static_md-x64.template | 3 +++ .../vs160/Win32/testsuite/release_static_mt-Win32.template | 3 +++ .../vs160/Win32/testsuite/release_static_mt-x64.template | 3 +++ 40 files changed, 136 insertions(+), 16 deletions(-) diff --git a/ProGen/templates/vs160/Win32/executable/debug_shared-Win32.template b/ProGen/templates/vs160/Win32/executable/debug_shared-Win32.template index 801cc8067..f0cbc374c 100644 --- a/ProGen/templates/vs160/Win32/executable/debug_shared-Win32.template +++ b/ProGen/templates/vs160/Win32/executable/debug_shared-Win32.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib;${configuration.linker.libraries}" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="1" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/executable/debug_shared-x64.template b/ProGen/templates/vs160/Win32/executable/debug_shared-x64.template index 44f8b2f54..3269b7d49 100644 --- a/ProGen/templates/vs160/Win32/executable/debug_shared-x64.template +++ b/ProGen/templates/vs160/Win32/executable/debug_shared-x64.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib64;${configuration.linker.libraries}" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin64\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="17" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/executable/debug_static_md-Win32.template b/ProGen/templates/vs160/Win32/executable/debug_static_md-Win32.template index 2654e35af..4cbbc03c1 100644 --- a/ProGen/templates/vs160/Win32/executable/debug_static_md-Win32.template +++ b/ProGen/templates/vs160/Win32/executable/debug_static_md-Win32.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib;${configuration.linker.libraries}" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin\static_md\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="1" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/executable/debug_static_md-x64.template b/ProGen/templates/vs160/Win32/executable/debug_static_md-x64.template index 644ff2a42..eea5e259c 100644 --- a/ProGen/templates/vs160/Win32/executable/debug_static_md-x64.template +++ b/ProGen/templates/vs160/Win32/executable/debug_static_md-x64.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib64;${configuration.linker.libraries}" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin64\static_md\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="17" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/executable/debug_static_mt-Win32.template b/ProGen/templates/vs160/Win32/executable/debug_static_mt-Win32.template index 0884c8f07..0eed84cbf 100644 --- a/ProGen/templates/vs160/Win32/executable/debug_static_mt-Win32.template +++ b/ProGen/templates/vs160/Win32/executable/debug_static_mt-Win32.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib;${configuration.linker.libraries}" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin\static_mt\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="1" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/executable/debug_static_mt-x64.template b/ProGen/templates/vs160/Win32/executable/debug_static_mt-x64.template index b52d79a78..c09aa9775 100644 --- a/ProGen/templates/vs160/Win32/executable/debug_static_mt-x64.template +++ b/ProGen/templates/vs160/Win32/executable/debug_static_mt-x64.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib64;${configuration.linker.libraries}" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin64\static_mt\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="17" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/executable/release_shared-Win32.template b/ProGen/templates/vs160/Win32/executable/release_shared-Win32.template index 6a8dccbbd..83c779a50 100644 --- a/ProGen/templates/vs160/Win32/executable/release_shared-Win32.template +++ b/ProGen/templates/vs160/Win32/executable/release_shared-Win32.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/executable/release_shared-x64.template b/ProGen/templates/vs160/Win32/executable/release_shared-x64.template index 369c69169..6afe64a20 100644 --- a/ProGen/templates/vs160/Win32/executable/release_shared-x64.template +++ b/ProGen/templates/vs160/Win32/executable/release_shared-x64.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/executable/release_static_md-Win32.template b/ProGen/templates/vs160/Win32/executable/release_static_md-Win32.template index d9dd10406..04586914d 100644 --- a/ProGen/templates/vs160/Win32/executable/release_static_md-Win32.template +++ b/ProGen/templates/vs160/Win32/executable/release_static_md-Win32.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/executable/release_static_md-x64.template b/ProGen/templates/vs160/Win32/executable/release_static_md-x64.template index 5992c40cf..9591713e2 100644 --- a/ProGen/templates/vs160/Win32/executable/release_static_md-x64.template +++ b/ProGen/templates/vs160/Win32/executable/release_static_md-x64.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/executable/release_static_mt-Win32.template b/ProGen/templates/vs160/Win32/executable/release_static_mt-Win32.template index 5477c2b8c..c43771347 100644 --- a/ProGen/templates/vs160/Win32/executable/release_static_mt-Win32.template +++ b/ProGen/templates/vs160/Win32/executable/release_static_mt-Win32.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/executable/release_static_mt-x64.template b/ProGen/templates/vs160/Win32/executable/release_static_mt-x64.template index f04f3a998..8c7889cb0 100644 --- a/ProGen/templates/vs160/Win32/executable/release_static_mt-x64.template +++ b/ProGen/templates/vs160/Win32/executable/release_static_mt-x64.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/library/debug_shared-Win32.template b/ProGen/templates/vs160/Win32/library/debug_shared-Win32.template index 5d547438b..1e6ef2e2d 100644 --- a/ProGen/templates/vs160/Win32/library/debug_shared-Win32.template +++ b/ProGen/templates/vs160/Win32/library/debug_shared-Win32.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -56,7 +59,7 @@ LinkIncremental="2" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="${project.outdir}\bin\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" AdditionalLibraryDirectories="${project.pocobase}\lib" SubSystem="1" ImportLibrary="${project.outdir}\lib\${project.target}d.lib" diff --git a/ProGen/templates/vs160/Win32/library/debug_shared-x64.template b/ProGen/templates/vs160/Win32/library/debug_shared-x64.template index f2257dda0..587c848b9 100644 --- a/ProGen/templates/vs160/Win32/library/debug_shared-x64.template +++ b/ProGen/templates/vs160/Win32/library/debug_shared-x64.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -56,7 +59,7 @@ LinkIncremental="2" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="${project.outdir}\bin64\${project.target}64d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" AdditionalLibraryDirectories="${project.pocobase}\lib64" SubSystem="1" ImportLibrary="${project.outdir}\lib64\${project.target}d.lib" diff --git a/ProGen/templates/vs160/Win32/library/debug_static_md-Win32.template b/ProGen/templates/vs160/Win32/library/debug_static_md-Win32.template index e4db26930..be12f08aa 100644 --- a/ProGen/templates/vs160/Win32/library/debug_static_md-Win32.template +++ b/ProGen/templates/vs160/Win32/library/debug_static_md-Win32.template @@ -38,6 +38,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/library/debug_static_md-x64.template b/ProGen/templates/vs160/Win32/library/debug_static_md-x64.template index 8cdfbae91..6aa1d4336 100644 --- a/ProGen/templates/vs160/Win32/library/debug_static_md-x64.template +++ b/ProGen/templates/vs160/Win32/library/debug_static_md-x64.template @@ -38,6 +38,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/library/debug_static_mt-Win32.template b/ProGen/templates/vs160/Win32/library/debug_static_mt-Win32.template index 486a9c7a3..02b3e5774 100644 --- a/ProGen/templates/vs160/Win32/library/debug_static_mt-Win32.template +++ b/ProGen/templates/vs160/Win32/library/debug_static_mt-Win32.template @@ -38,6 +38,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/library/debug_static_mt-x64.template b/ProGen/templates/vs160/Win32/library/debug_static_mt-x64.template index b02b7a56f..9900351b9 100644 --- a/ProGen/templates/vs160/Win32/library/debug_static_mt-x64.template +++ b/ProGen/templates/vs160/Win32/library/debug_static_mt-x64.template @@ -38,6 +38,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/library/release_shared-Win32.template b/ProGen/templates/vs160/Win32/library/release_shared-Win32.template index 51211d8e5..afdf988d2 100644 --- a/ProGen/templates/vs160/Win32/library/release_shared-Win32.template +++ b/ProGen/templates/vs160/Win32/library/release_shared-Win32.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/library/release_shared-x64.template b/ProGen/templates/vs160/Win32/library/release_shared-x64.template index 598a27939..d0f231df5 100644 --- a/ProGen/templates/vs160/Win32/library/release_shared-x64.template +++ b/ProGen/templates/vs160/Win32/library/release_shared-x64.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/library/release_static_md-Win32.template b/ProGen/templates/vs160/Win32/library/release_static_md-Win32.template index 59c197fe0..f77d914c2 100644 --- a/ProGen/templates/vs160/Win32/library/release_static_md-Win32.template +++ b/ProGen/templates/vs160/Win32/library/release_static_md-Win32.template @@ -41,6 +41,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/library/release_static_md-x64.template b/ProGen/templates/vs160/Win32/library/release_static_md-x64.template index dbc15deec..91596d53f 100644 --- a/ProGen/templates/vs160/Win32/library/release_static_md-x64.template +++ b/ProGen/templates/vs160/Win32/library/release_static_md-x64.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/library/release_static_mt-Win32.template b/ProGen/templates/vs160/Win32/library/release_static_mt-Win32.template index bc35acb96..c7ee3da27 100644 --- a/ProGen/templates/vs160/Win32/library/release_static_mt-Win32.template +++ b/ProGen/templates/vs160/Win32/library/release_static_mt-Win32.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/library/release_static_mt-x64.template b/ProGen/templates/vs160/Win32/library/release_static_mt-x64.template index acebfc406..167881543 100644 --- a/ProGen/templates/vs160/Win32/library/release_static_mt-x64.template +++ b/ProGen/templates/vs160/Win32/library/release_static_mt-x64.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/plugin/debug_shared-Win32.template b/ProGen/templates/vs160/Win32/plugin/debug_shared-Win32.template index d238a563d..4e2541a71 100644 --- a/ProGen/templates/vs160/Win32/plugin/debug_shared-Win32.template +++ b/ProGen/templates/vs160/Win32/plugin/debug_shared-Win32.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -56,7 +59,7 @@ LinkIncremental="2" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="${project.outdir}\bin\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" AdditionalLibraryDirectories="${project.pocobase}\lib" SubSystem="1" TargetMachine="1" diff --git a/ProGen/templates/vs160/Win32/plugin/debug_shared-x64.template b/ProGen/templates/vs160/Win32/plugin/debug_shared-x64.template index 6778cf133..1ae6b0e05 100644 --- a/ProGen/templates/vs160/Win32/plugin/debug_shared-x64.template +++ b/ProGen/templates/vs160/Win32/plugin/debug_shared-x64.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -56,7 +59,7 @@ LinkIncremental="2" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="${project.outdir}\bin64\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" AdditionalLibraryDirectories="${project.pocobase}\lib64" SubSystem="1" TargetMachine="17" diff --git a/ProGen/templates/vs160/Win32/plugin/release_shared-Win32.template b/ProGen/templates/vs160/Win32/plugin/release_shared-Win32.template index 862c9c6af..4c3250275 100644 --- a/ProGen/templates/vs160/Win32/plugin/release_shared-Win32.template +++ b/ProGen/templates/vs160/Win32/plugin/release_shared-Win32.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/plugin/release_shared-x64.template b/ProGen/templates/vs160/Win32/plugin/release_shared-x64.template index 65d659177..286237b32 100644 --- a/ProGen/templates/vs160/Win32/plugin/release_shared-x64.template +++ b/ProGen/templates/vs160/Win32/plugin/release_shared-x64.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/testsuite/debug_shared-Win32.template b/ProGen/templates/vs160/Win32/testsuite/debug_shared-Win32.template index 908b44c3f..9d82b2d58 100644 --- a/ProGen/templates/vs160/Win32/testsuite/debug_shared-Win32.template +++ b/ProGen/templates/vs160/Win32/testsuite/debug_shared-Win32.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="1" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/testsuite/debug_shared-x64.template b/ProGen/templates/vs160/Win32/testsuite/debug_shared-x64.template index 56255cbf4..6badd1a14 100644 --- a/ProGen/templates/vs160/Win32/testsuite/debug_shared-x64.template +++ b/ProGen/templates/vs160/Win32/testsuite/debug_shared-x64.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib64" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin64\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="17" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/testsuite/debug_static_md-Win32.template b/ProGen/templates/vs160/Win32/testsuite/debug_static_md-Win32.template index f9d422527..c31cf435a 100644 --- a/ProGen/templates/vs160/Win32/testsuite/debug_static_md-Win32.template +++ b/ProGen/templates/vs160/Win32/testsuite/debug_static_md-Win32.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin\static_md\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="1" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/testsuite/debug_static_md-x64.template b/ProGen/templates/vs160/Win32/testsuite/debug_static_md-x64.template index f8a3aa416..8ec7c04b4 100644 --- a/ProGen/templates/vs160/Win32/testsuite/debug_static_md-x64.template +++ b/ProGen/templates/vs160/Win32/testsuite/debug_static_md-x64.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib64" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin64\static_md\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="17" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/testsuite/debug_static_mt-Win32.template b/ProGen/templates/vs160/Win32/testsuite/debug_static_mt-Win32.template index 83d67eca3..ec9d6244c 100644 --- a/ProGen/templates/vs160/Win32/testsuite/debug_static_mt-Win32.template +++ b/ProGen/templates/vs160/Win32/testsuite/debug_static_mt-Win32.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin\static_mt\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="1" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/testsuite/debug_static_mt-x64.template b/ProGen/templates/vs160/Win32/testsuite/debug_static_mt-x64.template index 2769034f9..032e87005 100644 --- a/ProGen/templates/vs160/Win32/testsuite/debug_static_mt-x64.template +++ b/ProGen/templates/vs160/Win32/testsuite/debug_static_mt-x64.template @@ -37,6 +37,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="3" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> @@ -57,7 +60,7 @@ AdditionalLibraryDirectories="${project.pocobase}\lib64" SuppressStartupBanner="true" GenerateDebugInformation="true" - ProgramDatabaseFile="bin64\static_mt\${project.target}d.pdb" + ProgramDatabaseFile="$(OutDir)$(TargetName).pdb" SubSystem="1" TargetMachine="17" AdditionalOptions="${configuration.linker.additionalOptions}" diff --git a/ProGen/templates/vs160/Win32/testsuite/release_shared-Win32.template b/ProGen/templates/vs160/Win32/testsuite/release_shared-Win32.template index c467ca9d0..daf4781cb 100644 --- a/ProGen/templates/vs160/Win32/testsuite/release_shared-Win32.template +++ b/ProGen/templates/vs160/Win32/testsuite/release_shared-Win32.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/testsuite/release_shared-x64.template b/ProGen/templates/vs160/Win32/testsuite/release_shared-x64.template index 64f778e24..a100e0fa7 100644 --- a/ProGen/templates/vs160/Win32/testsuite/release_shared-x64.template +++ b/ProGen/templates/vs160/Win32/testsuite/release_shared-x64.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/testsuite/release_static_md-Win32.template b/ProGen/templates/vs160/Win32/testsuite/release_static_md-Win32.template index 6a8013d56..4308e6bcc 100644 --- a/ProGen/templates/vs160/Win32/testsuite/release_static_md-Win32.template +++ b/ProGen/templates/vs160/Win32/testsuite/release_static_md-Win32.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/testsuite/release_static_md-x64.template b/ProGen/templates/vs160/Win32/testsuite/release_static_md-x64.template index e58ce0734..53444e6a3 100644 --- a/ProGen/templates/vs160/Win32/testsuite/release_static_md-x64.template +++ b/ProGen/templates/vs160/Win32/testsuite/release_static_md-x64.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/testsuite/release_static_mt-Win32.template b/ProGen/templates/vs160/Win32/testsuite/release_static_mt-Win32.template index 3e4baa030..1583ff998 100644 --- a/ProGen/templates/vs160/Win32/testsuite/release_static_mt-Win32.template +++ b/ProGen/templates/vs160/Win32/testsuite/release_static_mt-Win32.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" /> diff --git a/ProGen/templates/vs160/Win32/testsuite/release_static_mt-x64.template b/ProGen/templates/vs160/Win32/testsuite/release_static_mt-x64.template index 75d4bcb9d..123fb0728 100644 --- a/ProGen/templates/vs160/Win32/testsuite/release_static_mt-x64.template +++ b/ProGen/templates/vs160/Win32/testsuite/release_static_mt-x64.template @@ -40,6 +40,9 @@ Detect64BitPortabilityProblems="false" DebugInformationFormat="0" CompileAs="0" + ProgramDatabaseFileName="$(OutDir)$(TargetName).pdb" + LanguageStandard="${vc.project.compiler.std.cpp}" + LanguageStandard_C="${vc.project.compiler.std.c}" DisableSpecificWarnings="${configuration.compiler.disableWarnings}" AdditionalOptions="${configuration.compiler.additionalOptions}" />