]>
Commit | Line | Data |
---|---|---|
14957cd0 A |
1 | IF (ENABLE_FAST_MALLOC) |
2 | LIST(APPEND WTF_SOURCES | |
3 | TCSystemAlloc.cpp | |
4 | ) | |
5 | ELSE () | |
6 | ADD_DEFINITIONS(-DUSE_SYSTEM_MALLOC=1) | |
7 | ENDIF() | |
8 | ||
9 | LIST(APPEND WTF_SOURCES | |
10 | efl/MainThreadEfl.cpp | |
11 | ||
12 | ThreadIdentifierDataPthreads.cpp | |
13 | ThreadingPthreads.cpp | |
14 | ||
15 | unicode/icu/CollatorICU.cpp | |
16 | ) | |
17 | ||
18 | IF (ENABLE_GLIB_SUPPORT) | |
19 | LIST(APPEND WTF_SOURCES | |
20 | gobject/GOwnPtr.cpp | |
21 | gobject/GRefPtr.cpp | |
22 | ) | |
23 | ||
24 | LIST(APPEND WTF_INCLUDE_DIRECTORIES | |
25 | ${Glib_INCLUDE_DIRS} | |
26 | ${JAVASCRIPTCORE_DIR}/wtf/gobject | |
27 | ) | |
28 | ||
29 | LIST(APPEND WTF_LIBRARIES | |
30 | ${Glib_LIBRARIES} | |
31 | ) | |
32 | ENDIF () | |
33 | ||
34 | LIST(APPEND WTF_LIBRARIES | |
35 | pthread | |
36 | ${ICU_LIBRARIES} | |
37 | ) | |
38 | ||
39 | LIST(APPEND WTF_LINK_FLAGS | |
40 | ${ECORE_LDFLAGS} | |
41 | ) | |
42 | ||
43 | LIST(APPEND WTF_INCLUDE_DIRECTORIES | |
44 | ${ECORE_INCLUDE_DIRS} | |
45 | ${JAVASCRIPTCORE_DIR}/wtf/unicode/ | |
46 | ) |