summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/wtf/CMakeListsEfl.txt
blob: 3cd3c8e92f851392f811bfc2a9268cf9094ff535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
ADD_DEFINITIONS(-DUSE_SYSTEM_MALLOC=1)

LIST(APPEND WTF_SOURCES
    efl/MainThreadEfl.cpp

    ThreadIdentifierDataPthreads.cpp
    ThreadingPthreads.cpp

    unicode/icu/CollatorICU.cpp
)

IF (ENABLE_GLIB_SUPPORT)
  LIST(APPEND WTF_SOURCES
    gobject/GOwnPtr.cpp
    gobject/GRefPtr.cpp
  )
ENDIF ()

LIST(APPEND WTF_LIBRARIES
    pthread
    ${ICU_LIBRARIES}
)

LIST(APPEND WTF_LINK_FLAGS
    ${ECORE_LDFLAGS}
)

LIST(APPEND WTF_INCLUDE_DIRECTORIES
    ${ECORE_INCLUDE_DIRS}
    ${JAVASCRIPTCORE_DIR}/wtf/unicode/
)