Title: [262090] trunk/Tools/TestWebKitAPI/PlatformPlayStation.cmake
Revision
262090
Author
yoshiaki.jitsuk...@sony.com
Date
2020-05-22 17:54:03 -0700 (Fri, 22 May 2020)

Log Message

Unreviewed build fix for Visual Studio JSC-only build.

Modified Paths


Diff

Modified: trunk/Tools/TestWebKitAPI/PlatformPlayStation.cmake (262089 => 262090)


--- trunk/Tools/TestWebKitAPI/PlatformPlayStation.cmake	2020-05-23 00:52:00 UTC (rev 262089)
+++ trunk/Tools/TestWebKitAPI/PlatformPlayStation.cmake	2020-05-23 00:54:03 UTC (rev 262090)
@@ -59,7 +59,13 @@
 
 # Set the debugger working directory for Visual Studio
 if (${CMAKE_GENERATOR} MATCHES "Visual Studio")
-    set_target_properties(TestWTF TestWebCore TestWebKit PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}")
+    set_target_properties(TestWTF PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}")
+    if (ENABLE_WEBCORE)
+        set_target_properties(TestWebCore PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}")
+    endif ()
+    if (ENABLE_WEBCORE)
+        set_target_properties(TestWebKit PROPERTIES VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}")
+    endif ()
 endif ()
 
 add_definitions(
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to