Browse Source

Projucer: replace Windows 10 target SDK 10.0.15063.0 with 10.0.16299.0.

This fixes problems with some files missing in previous SDK version (like wininet.h).
tags/2021-05-28
Lukasz Kozakiewicz 8 years ago
parent
commit
a97bdd6352
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      extras/Projucer/Source/LiveBuildEngine/jucer_CompileEngineClient.cpp
  2. +1
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_MSVC.h

+ 2
- 2
extras/Projucer/Source/LiveBuildEngine/jucer_CompileEngineClient.cpp View File

@@ -123,8 +123,8 @@ void LiveBuildProjectSettings::getLiveSettings (Project& project, PropertyListBu
props.add (new TextPropertyComponent (getExtraDLLsValue (project), "Extra dynamic libraries", 2048, true),
"Extra dynamic libs that the running code may require. Use new-lines or commas to separate the items");
static const char* targetPlatformNames[] = { "(default)", "8.1", "10.0.10240.0", "10.0.10586.0", "10.0.14393.0", "10.0.15063.0", nullptr };
const var targetPlatforms[] = { var(), "8.1", "10.0.10240.0", "10.0.10586.0", "10.0.14393.0", "10.0.15063.0" };
static const char* targetPlatformNames[] = { "(default)", "8.1", "10.0.10240.0", "10.0.10586.0", "10.0.14393.0", "10.0.16299.0", nullptr };
const var targetPlatforms[] = { var(), "8.1", "10.0.10240.0", "10.0.10586.0", "10.0.14393.0", "10.0.16299.0" };
props.add (new ChoicePropertyComponent (getWindowsTargetPlatformVersionValue (project), "Windows Target Platform",
StringArray (targetPlatformNames), Array<var> (targetPlatforms, numElementsInArray (targetPlatforms))),


+ 1
- 1
extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_MSVC.h View File

@@ -1929,7 +1929,7 @@ public:
String getSolutionComment() const override { return "# Visual Studio 2017"; }
String getToolsVersion() const override { return "15.0"; }
String getDefaultToolset() const override { return "v141"; }
String getDefaultWindowsTargetPlatformVersion() const override { return "10.0.15063.0"; }
String getDefaultWindowsTargetPlatformVersion() const override { return "10.0.16299.0"; }
static MSVCProjectExporterVC2017* createForSettings (Project& project, const ValueTree& settings)
{


Loading…
Cancel
Save