1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 09:43:13 +02:00

javascript: add new plugin to run javascript scripts in WeeChat

This plugin was originally written by Koka El Kiwi
(repository: https://github.com/KokaKiwi/weechat-js-plugin).

This plugin uses Google V8 engine to execute JS scripts.
This commit is contained in:
Sébastien Helleu
2015-03-06 20:07:37 +01:00
parent a83ad08c48
commit 145191dbc5
17 changed files with 6138 additions and 5 deletions
+7
View File
@@ -141,6 +141,13 @@ if(ENABLE_SCRIPTS AND ENABLE_GUILE)
endif()
endif()
if(ENABLE_SCRIPTS AND ENABLE_JAVASCRIPT)
find_package(V8)
if(V8_FOUND)
add_subdirectory(javascript)
endif()
endif()
if(ENABLE_TRIGGER)
add_subdirectory(trigger)
endif()