0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-12-22 19:51:51 +00:00

added basic config.w32

This commit is contained in:
Anatol Belski 2013-09-26 17:23:32 +02:00
parent 9cf20f01ae
commit 9dcb92cef4

15
config.w32 Normal file
View File

@ -0,0 +1,15 @@
ARG_WITH("v8js", "for V8 Javascript Engine", "no");
if (PHP_V8JS != "no") {
if (CHECK_LIB("v8_base.lib", "v8js") &&
CHECK_HEADER_ADD_INCLUDE("v8.h", "CFLAGS_V8JS")) {
EXTENSION("v8js", "v8js.cc v8js_convert.cc v8js_methods.cc v8js_variables.cc", "yes");
} else {
WARNING("v8js not enabled, headers or libs not found");
}
}