mirror of
https://github.com/darlinghq/darling-JavaScriptCore.git
synced 2024-12-04 02:00:55 +00:00
28 lines
713 B
CMake
28 lines
713 B
CMake
include(GLib.cmake)
|
|
|
|
list(APPEND JavaScriptCore_LIBRARIES
|
|
${GLIB_LIBRARIES}
|
|
${GLIB_GMODULE_LIBRARIES}
|
|
)
|
|
|
|
list(APPEND JavaScriptCore_SYSTEM_INCLUDE_DIRECTORIES
|
|
${GLIB_INCLUDE_DIRS}
|
|
)
|
|
|
|
list(APPEND JavaScriptCore_UNIFIED_SOURCE_LIST_FILES
|
|
"SourcesWPE.txt"
|
|
)
|
|
|
|
list(APPEND JavaScriptCore_PRIVATE_FRAMEWORK_HEADERS
|
|
inspector/remote/glib/RemoteInspectorServer.h
|
|
inspector/remote/glib/RemoteInspectorUtils.h
|
|
)
|
|
|
|
install(FILES ${JavaScriptCore_INSTALLED_HEADERS}
|
|
DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/wpe-webkit-${WPE_API_VERSION}/jsc"
|
|
COMPONENT "Development"
|
|
)
|
|
|
|
add_definitions(-DJSC_COMPILATION)
|
|
add_definitions(-DPKGLIBDIR="${CMAKE_INSTALL_FULL_LIBDIR}/wpe-webkit-${WPE_API_VERSION}")
|