CREATE_PROJECT: Use console for devtools and tests projects

This commit is contained in:
SupSuper 2021-02-22 12:28:54 +00:00
parent 73755d1d3a
commit a52e5818d2
2 changed files with 2 additions and 2 deletions

View file

@ -232,7 +232,7 @@ void VisualStudioProvider::outputGlobalPropFile(const BuildSetup &setup, std::of
<< "\t<Tool\n"
<< "\t\tName=\"VCLinkerTool\"\n"
<< "\t\tIgnoreDefaultLibraryNames=\"\"\n";
if (setup.featureEnabled("text-console")) {
if (setup.featureEnabled("text-console") || setup.devTools || setup.tests) {
properties << "\t\tSubSystem=\"1\"\n";
} else {
properties << "\t\tSubSystem=\"2\"\n";