[CMake] Add _PRIVATE_LIBRARIES to framework
https://bugs.webkit.org/show_bug.cgi?id=207004
Reviewed by Konstantin Tokarev.
.:
Use _PRIVATE_LIBRARIES to when creating a WebKit target to specify privately linked
libraries. This fits with the current conventions in WebKit for CMake libraries and
prevents appending to _LIBRARIES with a visibility modifier which likely has
unintended consequences.
* Source/cmake/WebKitMacros.cmake:
Source/JavaScriptCore:
Move uses of PRIVATE within _LIBRARIES to _PRIVATE_LIBRARIES. Any _LIBRARIES appended
afterwards will have that visibility set erroneously.
* PlatformFTW.cmake:
Source/WebKit:
Move uses of PRIVATE within _LIBRARIES to _PRIVATE_LIBRARIES. Any _LIBRARIES appended
afterwards will have that visibility set erroneously.
* CMakeLists.txt:
* PlatformFTW.cmake:
* PlatformGTK.cmake:
* PlatformWin.cmake:
Source/WebKitLegacy:
Move uses of PRIVATE within _LIBRARIES to _PRIVATE_LIBRARIES. Any _LIBRARIES appended
afterwards will have that visibility set erroneously.
* CMakeLists.txt:
* PlatformFTW.cmake:
* PlatformWin.cmake:
Source/WTF:
Move uses of PRIVATE within _LIBRARIES to _PRIVATE_LIBRARIES. Any _LIBRARIES appended
afterwards will have that visibility set erroneously.
* wtf/PlatformFTW.cmake:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@255491 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/ChangeLog b/ChangeLog
index f23a800..9b605ec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2020-01-31 Don Olmstead <don.olmstead@sony.com>
+
+ [CMake] Add _PRIVATE_LIBRARIES to framework
+ https://bugs.webkit.org/show_bug.cgi?id=207004
+
+ Reviewed by Konstantin Tokarev.
+
+ Use _PRIVATE_LIBRARIES to when creating a WebKit target to specify privately linked
+ libraries. This fits with the current conventions in WebKit for CMake libraries and
+ prevents appending to _LIBRARIES with a visibility modifier which likely has
+ unintended consequences.
+
+ * Source/cmake/WebKitMacros.cmake:
+
2020-01-30 Ross Kirsling <ross.kirsling@sony.com>
[CMake] Add SQLite::SQLite3 target