Bug 125512

Summary: [GTK][CMake] make libjavascriptcoregtk a public shared library again
Product: WebKit Reporter: Gustavo Noronha (kov) <gustavo>
Component: WebKitGTKAssignee: Gustavo Noronha (kov) <gustavo>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, eflews.bot, gyuyoung.kim, rakuco
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 115966    
Attachments:
Description Flags
Patch
none
Patch mrobinson: review+

Gustavo Noronha (kov)
Reported 2013-12-10 07:17:52 PST
Right now JSC is being built as an intermediate static library, we need to support shipping it as a shared library.
Attachments
Patch (4.56 KB, patch)
2013-12-18 13:38 PST, Gustavo Noronha (kov)
no flags
Patch (3.77 KB, patch)
2013-12-18 14:56 PST, Gustavo Noronha (kov)
mrobinson: review+
Gustavo Noronha (kov)
Comment 1 2013-12-18 13:38:13 PST
EFL EWS Bot
Comment 2 2013-12-18 14:30:01 PST
Gustavo Noronha (kov)
Comment 3 2013-12-18 14:56:15 PST
Martin Robinson
Comment 4 2013-12-18 15:10:11 PST
Comment on attachment 219574 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=219574&action=review > Source/JavaScriptCore/CMakeLists.txt:765 > +get_target_property(TARGET_TYPE JavaScriptCore TYPE) > +if (${TARGET_TYPE} STREQUAL "SHARED_LIBRARY") I think you can just do: if (${JavaScriptCore_LIBRARY_TYPE} STREQUAL "SHARED") here and avoid the get_target_property call.
Gustavo Noronha (kov)
Comment 5 2013-12-18 17:31:54 PST
Note You need to log in before you can comment on or make changes to this bug.