https://bugs.webkit.org/show_bug.cgi?id=136194
Reviewed by Csaba Osztrogonác.
Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
* CMakeLists.txt:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@173155
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
set(ENABLE_TOOLS ON)
endif ()
+# Do not create transitive library dependencies by default
+set(CMAKE_LINK_INTERFACE_LIBRARIES "")
+
include(WebKitMacros)
include(WebKitFS)
include(WebKitHelpers)
+2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
+
+ [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
+ https://bugs.webkit.org/show_bug.cgi?id=136194
+
+ Reviewed by Csaba Osztrogonác.
+
+ Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
+
+ * CMakeLists.txt:
+
2014-08-29 Eva Balazsfalvi <evab.u-szeged@partner.samsung.com>
[EFL] Remove non Coordinated Graphics code path from cmake build system after r142169
target_link_libraries(JavaScriptCore ${JavaScriptCore_LIBRARIES})
set_target_properties(JavaScriptCore PROPERTIES COMPILE_DEFINITIONS "BUILDING_JavaScriptCore")
set_target_properties(JavaScriptCore PROPERTIES FOLDER "JavaScriptCore")
-set_target_properties(JavaScriptCore PROPERTIES LINK_INTERFACE_LIBRARIES "")
if (JavaScriptCore_OUTPUT_NAME)
set_target_properties(JavaScriptCore PROPERTIES OUTPUT_NAME ${JavaScriptCore_OUTPUT_NAME})
+2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
+
+ [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
+ https://bugs.webkit.org/show_bug.cgi?id=136194
+
+ Reviewed by Csaba Osztrogonác.
+
+ Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
+
+ * CMakeLists.txt:
+
2014-08-26 Maciej Stachowiak <mjs@apple.com>
Use RetainPtr::autorelease in some places where it seems appropriate
add_library(WebCore ${WebCore_LIBRARY_TYPE} ${WebCore_SOURCES})
set_target_properties(WebCore PROPERTIES COMPILE_DEFINITIONS "BUILDING_WebCore")
set_target_properties(WebCore PROPERTIES FOLDER "WebCore")
-set_target_properties(WebCore PROPERTIES LINK_INTERFACE_LIBRARIES "")
if (WebCore_OUTPUT_NAME)
set_target_properties(WebCore PROPERTIES OUTPUT_NAME ${WebCore_OUTPUT_NAME})
+2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
+
+ [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
+ https://bugs.webkit.org/show_bug.cgi?id=136194
+
+ Reviewed by Csaba Osztrogonác.
+
+ Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
+
+ * CMakeLists.txt:
+
2014-08-31 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Unreviewed, fix build break on EFL and GTK since r173152.
add_webkit2_prefix_header(WebKit2)
target_link_libraries(WebKit2 ${WebKit2_LIBRARIES})
set_target_properties(WebKit2 PROPERTIES FOLDER "WebKit")
-set_target_properties(WebKit2 PROPERTIES LINK_INTERFACE_LIBRARIES "")
if (WebKit2_VERSION_SCRIPT)
ADD_TARGET_PROPERTIES(WebKit2 LINK_FLAGS "${WebKit2_VERSION_SCRIPT}")
+2014-09-01 Gyuyoung Kim <gyuyoung.kim@samsung.com>
+
+ [CMAKE] Build warning by INTERFACE_LINK_LIBRARIES
+ https://bugs.webkit.org/show_bug.cgi?id=136194
+
+ Reviewed by Csaba Osztrogonác.
+
+ Set the LINK_INTERFACE_LIBRARIES target property on the top level CMakeLists.txt.
+
+ * CMakeLists.txt:
+
2014-09-01 Michael Catanzaro <mcatanzaro@igalia.com>
[SOUP] WebKitDownload cannot overwrite existing file