diff options
author | Tad Marshall <tad@10gen.com> | 2012-11-09 07:39:12 -0500 |
---|---|---|
committer | Tad Marshall <tad@10gen.com> | 2012-11-09 11:23:47 -0500 |
commit | e3471730639f6eba67d9b12d6f78c257cc748048 (patch) | |
tree | 64ac511f0b6b26062342f6840a3ecdf7af2f0780 /src/mongo/scripting/v8_db.h | |
parent | 47aaf8bbe4e26b7b88aa85d2d904c42eb06901bf (diff) | |
download | mongo-e3471730639f6eba67d9b12d6f78c257cc748048.tar.gz |
SERVER-7600 Fixup V8 includes, adapt Visual Studio projects
Use <v8.h> as include path for includes of "third_party/v8/include/v8.h",
adapt Visual Studio project files to include the required path, move
includes in mongo/scripting/v8* into style guide order, build Visual Studio
output files for V8 in separate directories so that SpiderMonkey and V8
builds can be run at the same time and to prevent link errors, tell
.gitignore to ignore these new directories.
Diffstat (limited to 'src/mongo/scripting/v8_db.h')
-rw-r--r-- | src/mongo/scripting/v8_db.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/scripting/v8_db.h b/src/mongo/scripting/v8_db.h index 48ca054feeb..866bc4ce748 100644 --- a/src/mongo/scripting/v8_db.h +++ b/src/mongo/scripting/v8_db.h @@ -21,7 +21,7 @@ #include <cstdio> #include <cstdlib> #include <cstring> -#include <third_party/v8/include/v8.h> +#include <v8.h> #include "mongo/scripting/engine_v8.h" |