[Release] Webkit2-efl-123997_0.11.19
[framework/web/webkit-efl.git] / Source / WebKit / CMakeLists.txt
1 SET(WebKit_INCLUDE_DIRECTORIES
2     "${WEBKIT_DIR}"
3     "${WEBCORE_DIR}"
4     "${WEBCORE_DIR}/Modules/intents"
5     "${WEBCORE_DIR}/Modules/networkinfo"
6     "${WEBCORE_DIR}/Modules/webdatabase"
7     "${WEBCORE_DIR}/accessibility"
8     "${WEBCORE_DIR}/bindings/generic"
9     "${WEBCORE_DIR}/bindings/js"
10     "${WEBCORE_DIR}/bindings"
11     "${WEBCORE_DIR}/bridge"
12     "${WEBCORE_DIR}/bridge/c"
13     "${WEBCORE_DIR}/bridge/jsc"
14     "${WEBCORE_DIR}/css"
15     "${WEBCORE_DIR}/dom"
16     "${WEBCORE_DIR}/dom/default"
17     "${WEBCORE_DIR}/editing"
18     "${WEBCORE_DIR}/history"
19     "${WEBCORE_DIR}/html"
20     "${WEBCORE_DIR}/html/shadow"
21     "${WEBCORE_DIR}/inspector"
22     "${WEBCORE_DIR}/loader"
23     "${WEBCORE_DIR}/loader/appcache"
24     "${WEBCORE_DIR}/loader/icon"
25     "${WEBCORE_DIR}/loader/cache"
26     "${WEBCORE_DIR}/page"
27     "${WEBCORE_DIR}/page/animation"
28     "${WEBCORE_DIR}/platform"
29     "${WEBCORE_DIR}/platform/animation"
30     "${WEBCORE_DIR}/platform/graphics"
31     "${WEBCORE_DIR}/platform/graphics/filters"
32     "${WEBCORE_DIR}/platform/graphics/harfbuzz"
33     "${WEBCORE_DIR}/platform/graphics/harfbuzz/ng"
34     "${WEBCORE_DIR}/platform/graphics/transforms"
35     "${WEBCORE_DIR}/platform/network"
36     "${WEBCORE_DIR}/platform/sql"
37     "${WEBCORE_DIR}/platform/text"
38     "${WEBCORE_DIR}/plugins"
39     "${WEBCORE_DIR}/rendering"
40     "${WEBCORE_DIR}/rendering/style"
41     "${WEBCORE_DIR}/storage"
42     "${WEBCORE_DIR}/svg"
43     "${WEBCORE_DIR}/svg/graphics"
44     "${WEBCORE_DIR}/svg/properties"
45     "${JAVASCRIPTCORE_DIR}"
46     "${JAVASCRIPTCORE_DIR}/ForwardingHeaders"
47     "${JAVASCRIPTCORE_DIR}/API"
48     "${JAVASCRIPTCORE_DIR}/assembler"
49     "${JAVASCRIPTCORE_DIR}/bytecode"
50     "${JAVASCRIPTCORE_DIR}/bytecompiler"
51     "${JAVASCRIPTCORE_DIR}/disassembler"
52     "${JAVASCRIPTCORE_DIR}/dfg"
53     "${JAVASCRIPTCORE_DIR}/heap"
54     "${JAVASCRIPTCORE_DIR}/debugger"
55     "${JAVASCRIPTCORE_DIR}/interpreter"
56     "${JAVASCRIPTCORE_DIR}/jit"
57     "${JAVASCRIPTCORE_DIR}/llint"
58     "${JAVASCRIPTCORE_DIR}/parser"
59     "${JAVASCRIPTCORE_DIR}/profiler"
60     "${JAVASCRIPTCORE_DIR}/runtime"
61     "${WTF_DIR}"
62     "${DERIVED_SOURCES_WEBCORE_DIR}"
63     "${CMAKE_SOURCE_DIR}/Source" # TIZEN_DAILY_UPVERSION
64     "${CMAKE_BINARY_DIR}"
65 )
66
67 IF (WTF_USE_SOUP)
68   LIST(APPEND WebKit_INCLUDE_DIRECTORIES "${WEBCORE_DIR}/platform/network/soup")
69 ENDIF ()
70
71 IF (WTF_USE_CURL)
72   LIST(APPEND WebKit_INCLUDE_DIRECTORIES "${WEBCORE_DIR}/platform/network/curl")
73 ENDIF ()
74
75 SET(WebKit_LIBRARIES
76     ${WebCore_LIBRARY_NAME}
77 )
78
79 WEBKIT_INCLUDE_CONFIG_FILES_IF_EXISTS()
80
81 ADD_DEFINITIONS(-DBUILDING_WebKit)
82 INCLUDE_DIRECTORIES(${WebKit_INCLUDE_DIRECTORIES})
83 ADD_LIBRARY(${WebKit_LIBRARY_NAME} ${WebKit_LIBRARY_TYPE} ${WebKit_SOURCES})
84 ADD_DEPENDENCIES(${WebKit_LIBRARY_NAME} ${WebCore_LIBRARY_NAME})
85 TARGET_LINK_LIBRARIES(${WebKit_LIBRARY_NAME} ${WebKit_LIBRARIES})
86 SET_TARGET_PROPERTIES(${WebKit_LIBRARY_NAME} PROPERTIES FOLDER "WebKit")
87 SET_TARGET_PROPERTIES(${WebKit_LIBRARY_NAME} PROPERTIES LINK_INTERFACE_LIBRARIES "")
88
89 IF (WebKit_LINK_FLAGS)
90     ADD_TARGET_PROPERTIES(${WebKit_LIBRARY_NAME} LINK_FLAGS "${WebKit_LINK_FLAGS}")
91 ENDIF ()
92
93 IF (VERSION_SCRIPT)
94     ADD_TARGET_PROPERTIES(${WebKit_LIBRARY_NAME} LINK_FLAGS "${VERSION_SCRIPT}")
95 ENDIF ()
96
97 SET_TARGET_PROPERTIES(${WebKit_LIBRARY_NAME} PROPERTIES VERSION ${PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR})
98 INSTALL(TARGETS ${WebKit_LIBRARY_NAME} DESTINATION "${LIB_INSTALL_DIR}")