Title: [209991] trunk/Tools
Revision
209991
Author
mcatanz...@igalia.com
Date
2016-12-19 11:12:38 -0800 (Mon, 19 Dec 2016)

Log Message

[CMake] TestWebKitAPIBase links to itself
https://bugs.webkit.org/show_bug.cgi?id=165985

Reviewed by Alex Christensen.

Fix CMake warning about a target linking to itself, which makes no sense.

* TestWebKitAPI/CMakeLists.txt:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (209990 => 209991)


--- trunk/Tools/ChangeLog	2016-12-19 19:05:36 UTC (rev 209990)
+++ trunk/Tools/ChangeLog	2016-12-19 19:12:38 UTC (rev 209991)
@@ -1,5 +1,16 @@
 2016-12-19  Michael Catanzaro  <mcatanz...@igalia.com>
 
+        [CMake] TestWebKitAPIBase links to itself
+        https://bugs.webkit.org/show_bug.cgi?id=165985
+
+        Reviewed by Alex Christensen.
+
+        Fix CMake warning about a target linking to itself, which makes no sense.
+
+        * TestWebKitAPI/CMakeLists.txt:
+
+2016-12-19  Michael Catanzaro  <mcatanz...@igalia.com>
+
         [GTK] GtkDoc build should be quieter
         https://bugs.webkit.org/show_bug.cgi?id=165994
 

Modified: trunk/Tools/TestWebKitAPI/CMakeLists.txt (209990 => 209991)


--- trunk/Tools/TestWebKitAPI/CMakeLists.txt	2016-12-19 19:05:36 UTC (rev 209990)
+++ trunk/Tools/TestWebKitAPI/CMakeLists.txt	2016-12-19 19:12:38 UTC (rev 209991)
@@ -204,7 +204,7 @@
         ${TESTWEBKITAPI_DIR}/TestsController.cpp
     )
 
-    target_link_libraries(TestWebKitAPIBase ${test_webkit2_api_LIBRARIES})
+    target_link_libraries(TestWebKitAPIBase _javascript_Core WTF WebKit2 gtest)
 
     add_dependencies(TestWebKitAPIBase WebKit2 ${ForwardingHeadersForTestWebKitAPI_NAME} ${ForwardingNetworkHeadersForTestWebKitAPI_NAME})
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to