Title: [290656] trunk/Source
Revision
290656
Author
commit-qu...@webkit.org
Date
2022-03-01 10:22:32 -0800 (Tue, 01 Mar 2022)

Log Message

[AppleWin] Start using Visual Studio 2022
https://bugs.webkit.org/show_bug.cgi?id=234933

Patch by Alex Christensen <achristen...@webkit.org> on 2022-03-01
Reviewed by Maciej Stachowiak.

Source/_javascript_Core:

* _javascript_Core.vcxproj/_javascript_Core.proj:

Source/WebCore:

* WebCore.vcxproj/WebCore.proj:

Source/WebKitLegacy:

* WebKitLegacy.vcxproj/WebKitLegacy.proj:

Source/WTF:

* WTF.vcxproj/WTF.proj:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (290655 => 290656)


--- trunk/Source/_javascript_Core/ChangeLog	2022-03-01 18:14:37 UTC (rev 290655)
+++ trunk/Source/_javascript_Core/ChangeLog	2022-03-01 18:22:32 UTC (rev 290656)
@@ -1,3 +1,12 @@
+2022-03-01  Alex Christensen  <achristen...@webkit.org>
+
+        [AppleWin] Start using Visual Studio 2022
+        https://bugs.webkit.org/show_bug.cgi?id=234933
+
+        Reviewed by Maciej Stachowiak.
+
+        * _javascript_Core.vcxproj/_javascript_Core.proj:
+
 2022-03-01  Geza Lore  <gl...@igalia.com>
 
         [JSC] Port EXTRA_CTI_THUNKS to all platforms

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.proj (290655 => 290656)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.proj	2022-03-01 18:14:37 UTC (rev 290655)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.proj	2022-03-01 18:22:32 UTC (rev 290656)
@@ -55,9 +55,9 @@
   <Target Name="Build" AfterTargets="PreBuild">
     <Message Text="Building $(CONFIGURATION) Solution" />
     <Error Text="DSTROOT property or environment variable must be defined." Condition="'$(DSTROOT)' == ''" />
-	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86=1 -A Win32 -G &quot;Visual Studio 16 2019&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
+	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86=1 -A Win32 -G &quot;Visual Studio 17 2022&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
 	<Exec Command="msbuild Project.sln /p:Configuration=$(CONFIG)" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
-	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86_64=1 -A x64 -G &quot;Visual Studio 16 2019&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
+	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86_64=1 -A x64 -G &quot;Visual Studio 17 2022&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
 	<Exec Command="msbuild Project.sln /p:Configuration=$(CONFIG)" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
   </Target>
 

Modified: trunk/Source/WTF/ChangeLog (290655 => 290656)


--- trunk/Source/WTF/ChangeLog	2022-03-01 18:14:37 UTC (rev 290655)
+++ trunk/Source/WTF/ChangeLog	2022-03-01 18:22:32 UTC (rev 290656)
@@ -1,3 +1,12 @@
+2022-03-01  Alex Christensen  <achristen...@webkit.org>
+
+        [AppleWin] Start using Visual Studio 2022
+        https://bugs.webkit.org/show_bug.cgi?id=234933
+
+        Reviewed by Maciej Stachowiak.
+
+        * WTF.vcxproj/WTF.proj:
+
 2022-03-01  Geza Lore  <gl...@igalia.com>
 
         [JSC] Port EXTRA_CTI_THUNKS to all platforms

Modified: trunk/Source/WTF/WTF.vcxproj/WTF.proj (290655 => 290656)


--- trunk/Source/WTF/WTF.vcxproj/WTF.proj	2022-03-01 18:14:37 UTC (rev 290655)
+++ trunk/Source/WTF/WTF.vcxproj/WTF.proj	2022-03-01 18:22:32 UTC (rev 290656)
@@ -47,9 +47,9 @@
   <Target Name="Build" AfterTargets="PreBuild">
     <Message Text="Building $(CONFIGURATION) Solution" />
     <Error Text="DSTROOT property or environment variable must be defined." Condition="'$(DSTROOT)' == ''" />
-	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86=1 -A Win32 -G &quot;Visual Studio 16 2019&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
+	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86=1 -A Win32 -G &quot;Visual Studio 17 2022&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
 	<Exec Command="msbuild Project.sln /p:Configuration=$(CONFIG)" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
-	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86_64=1 -A x64 -G &quot;Visual Studio 16 2019&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
+	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86_64=1 -A x64 -G &quot;Visual Studio 17 2022&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
 	<Exec Command="msbuild Project.sln /p:Configuration=$(CONFIG)" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
   </Target>
 

Modified: trunk/Source/WebCore/ChangeLog (290655 => 290656)


--- trunk/Source/WebCore/ChangeLog	2022-03-01 18:14:37 UTC (rev 290655)
+++ trunk/Source/WebCore/ChangeLog	2022-03-01 18:22:32 UTC (rev 290656)
@@ -1,3 +1,12 @@
+2022-03-01  Alex Christensen  <achristen...@webkit.org>
+
+        [AppleWin] Start using Visual Studio 2022
+        https://bugs.webkit.org/show_bug.cgi?id=234933
+
+        Reviewed by Maciej Stachowiak.
+
+        * WebCore.vcxproj/WebCore.proj:
+
 2022-03-01  Antoine Quint  <grao...@webkit.org>
 
         [web-animations] add support for passing an optional timeline to Element.animate()

Modified: trunk/Source/WebCore/WebCore.vcxproj/WebCore.proj (290655 => 290656)


--- trunk/Source/WebCore/WebCore.vcxproj/WebCore.proj	2022-03-01 18:14:37 UTC (rev 290655)
+++ trunk/Source/WebCore/WebCore.vcxproj/WebCore.proj	2022-03-01 18:22:32 UTC (rev 290656)
@@ -55,9 +55,9 @@
   <Target Name="Build" AfterTargets="PreBuild">
     <Message Text="Building $(CONFIGURATION) Solution" />
     <Error Text="DSTROOT property or environment variable must be defined." Condition="'$(DSTROOT)' == ''" />
-	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86=1 -A Win32 -G &quot;Visual Studio 16 2019&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
+	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86=1 -A Win32 -G &quot;Visual Studio 17 2022&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
 	<Exec Command="msbuild Project.sln /p:Configuration=$(CONFIG)" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
-	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86_64=1 -A x64 -G &quot;Visual Studio 16 2019&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
+	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86_64=1 -A x64 -G &quot;Visual Studio 17 2022&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
 	<Exec Command="msbuild Project.sln /p:Configuration=$(CONFIG)" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
   </Target>
 

Modified: trunk/Source/WebKitLegacy/ChangeLog (290655 => 290656)


--- trunk/Source/WebKitLegacy/ChangeLog	2022-03-01 18:14:37 UTC (rev 290655)
+++ trunk/Source/WebKitLegacy/ChangeLog	2022-03-01 18:22:32 UTC (rev 290656)
@@ -1,3 +1,12 @@
+2022-03-01  Alex Christensen  <achristen...@webkit.org>
+
+        [AppleWin] Start using Visual Studio 2022
+        https://bugs.webkit.org/show_bug.cgi?id=234933
+
+        Reviewed by Maciej Stachowiak.
+
+        * WebKitLegacy.vcxproj/WebKitLegacy.proj:
+
 2022-02-22  Chris Dumez  <cdu...@apple.com>
 
         Avoid having to iterate the whole frame tree(s) every time we need to dispatch storage events

Modified: trunk/Source/WebKitLegacy/WebKitLegacy.vcxproj/WebKitLegacy.proj (290655 => 290656)


--- trunk/Source/WebKitLegacy/WebKitLegacy.vcxproj/WebKitLegacy.proj	2022-03-01 18:14:37 UTC (rev 290655)
+++ trunk/Source/WebKitLegacy/WebKitLegacy.vcxproj/WebKitLegacy.proj	2022-03-01 18:22:32 UTC (rev 290656)
@@ -55,9 +55,9 @@
   <Target Name="Build" AfterTargets="PreBuild">
     <Message Text="Building $(CONFIGURATION) Solution" />
     <Error Text="DSTROOT property or environment variable must be defined." Condition="'$(DSTROOT)' == ''" />
-	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86=1 -A Win32 -G &quot;Visual Studio 16 2019&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
+	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86=1 -A Win32 -G &quot;Visual Studio 17 2022&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
 	<Exec Command="msbuild Project.sln /p:Configuration=$(CONFIG)" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build32"/>
-	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86_64=1 -A x64 -G &quot;Visual Studio 16 2019&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
+	<Exec Command="$(CMakeCommandCommon) -DWTF_CPU_X86_64=1 -A x64 -G &quot;Visual Studio 17 2022&quot;" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
 	<Exec Command="msbuild Project.sln /p:Configuration=$(CONFIG)" WorkingDirectory="$(OBJROOT)/$(CONFIG)/build64"/>
   </Target>
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to