2017-08-12 16:48:01 +00:00
|
|
|
add_definitions(-DSTATICALLY_LINKED_WITH_WTF -D__STDC_WANT_LIB_EXT1__)
|
|
|
|
|
|
|
|
find_library(SECURITY_LIBRARY Security)
|
|
|
|
list(APPEND JavaScriptCore_LIBRARIES
|
|
|
|
${SECURITY_LIBRARY}
|
|
|
|
)
|
|
|
|
|
2020-08-29 13:27:11 +00:00
|
|
|
list(APPEND JavaScriptCore_UNIFIED_SOURCE_LIST_FILES
|
|
|
|
"SourcesCocoa.txt"
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND JavaScriptCore_PRIVATE_INCLUDE_DIRECTORIES
|
2017-08-12 16:48:01 +00:00
|
|
|
${JAVASCRIPTCORE_DIR}/disassembler/udis86
|
2020-08-29 13:27:11 +00:00
|
|
|
${JAVASCRIPTCORE_DIR}/inspector/cocoa
|
2018-01-03 05:16:05 +00:00
|
|
|
${JAVASCRIPTCORE_DIR}/inspector/remote/cocoa
|
2017-08-12 16:48:01 +00:00
|
|
|
)
|
|
|
|
|
2020-08-29 13:27:11 +00:00
|
|
|
list(APPEND JavaScriptCore_PUBLIC_FRAMEWORK_HEADERS
|
|
|
|
API/JSContext.h
|
|
|
|
API/JSExport.h
|
|
|
|
API/JSManagedValue.h
|
|
|
|
API/JSStringRefCF.h
|
|
|
|
API/JSValue.h
|
|
|
|
API/JSVirtualMachine.h
|
|
|
|
API/JavaScriptCore.h
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND JavaScriptCore_PRIVATE_FRAMEWORK_HEADERS
|
|
|
|
inspector/remote/cocoa/RemoteInspectorXPCConnection.h
|
|
|
|
)
|
|
|
|
|
2017-08-12 16:48:01 +00:00
|
|
|
set(CMAKE_SHARED_LINKER_FLAGS ${CMAKE_SHARED_LINKER_FLAGS} "-compatibility_version 1 -current_version ${WEBKIT_MAC_VERSION}")
|
|
|
|
|
|
|
|
# FIXME: Make including these files consistent in the source so these forwarding headers are not needed.
|
|
|
|
if (NOT EXISTS ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/InspectorBackendDispatchers.h)
|
|
|
|
file(WRITE ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/InspectorBackendDispatchers.h "#include \"inspector/InspectorBackendDispatchers.h\"")
|
|
|
|
endif ()
|
|
|
|
if (NOT EXISTS ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/InspectorFrontendDispatchers.h)
|
|
|
|
file(WRITE ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/InspectorFrontendDispatchers.h "#include \"inspector/InspectorFrontendDispatchers.h\"")
|
|
|
|
endif ()
|
|
|
|
if (NOT EXISTS ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/InspectorProtocolObjects.h)
|
|
|
|
file(WRITE ${DERIVED_SOURCES_JAVASCRIPTCORE_DIR}/InspectorProtocolObjects.h "#include \"inspector/InspectorProtocolObjects.h\"")
|
|
|
|
endif ()
|