mirror of
https://github.com/darlinghq/darling-JavaScriptCore.git
synced 2024-11-23 04:09:40 +00:00
19 lines
428 B
CMake
19 lines
428 B
CMake
if (ENABLE_REMOTE_INSPECTOR)
|
|
if (USE_GLIB)
|
|
include(inspector/remote/GLib.cmake)
|
|
elseif (APPLE)
|
|
include(inspector/remote/Cocoa.cmake)
|
|
else ()
|
|
include(inspector/remote/Socket.cmake)
|
|
endif ()
|
|
endif ()
|
|
|
|
if (USE_GLIB)
|
|
list(APPEND JavaScriptCore_SYSTEM_INCLUDE_DIRECTORIES
|
|
${GLIB_INCLUDE_DIRS}
|
|
)
|
|
list(APPEND JavaScriptCore_LIBRARIES
|
|
${GLIB_LIBRARIES}
|
|
)
|
|
endif ()
|