mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-18 00:54:19 +00:00
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).
This commit is contained in:
parent
413164f46a
commit
a97bdd6352
2 changed files with 3 additions and 3 deletions
|
|
@ -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))),
|
||||
|
|
|
|||
|
|
@ -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…
Add table
Add a link
Reference in a new issue