Title: [199161] trunk/Source/WebCore
- Revision
- 199161
- Author
- [email protected]
- Date
- 2016-04-07 10:40:48 -0700 (Thu, 07 Apr 2016)
Log Message
[Win] Output WebCore.pdb to the same location as WebCore.lib
https://bugs.webkit.org/show_bug.cgi?id=156256
<rdar://problem/19416363>
Reviewed by Alex Christensen.
Add a rule to WebCore's CMake generator to tell Visual Studio to output
the PDB file for the WebCore.lib in the same location as the resulting
library, rather than in the build intermediary location).
* CMakeLists.txt:
Modified Paths
Diff
Modified: trunk/Source/WebCore/CMakeLists.txt (199160 => 199161)
--- trunk/Source/WebCore/CMakeLists.txt 2016-04-07 17:31:06 UTC (rev 199160)
+++ trunk/Source/WebCore/CMakeLists.txt 2016-04-07 17:40:48 UTC (rev 199161)
@@ -3879,3 +3879,9 @@
if ((CMAKE_CXX_COMPILER_ID STREQUAL "GNU") AND WTF_CPU_ARM AND (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "4.9") AND (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.9.3"))
set_source_files_properties(svg/SVGPathElement.cpp PROPERTIES COMPILE_FLAGS "-O2")
endif ()
+
+if (MSVC)
+ set_target_properties(WebCore PROPERTIES
+ COMPILE_PDB_NAME ${WebCore_OUTPUT_NAME}
+ )
+endif ()
Modified: trunk/Source/WebCore/ChangeLog (199160 => 199161)
--- trunk/Source/WebCore/ChangeLog 2016-04-07 17:31:06 UTC (rev 199160)
+++ trunk/Source/WebCore/ChangeLog 2016-04-07 17:40:48 UTC (rev 199161)
@@ -1,3 +1,17 @@
+2016-04-07 Brent Fulgham <[email protected]>
+
+ [Win] Output WebCore.pdb to the same location as WebCore.lib
+ https://bugs.webkit.org/show_bug.cgi?id=156256
+ <rdar://problem/19416363>
+
+ Reviewed by Alex Christensen.
+
+ Add a rule to WebCore's CMake generator to tell Visual Studio to output
+ the PDB file for the WebCore.lib in the same location as the resulting
+ library, rather than in the build intermediary location).
+
+ * CMakeLists.txt:
+
2016-04-06 Sam Weinig <[email protected]>
window.Crypto is missing
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes