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 /.gitignore | |
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 '.gitignore')
-rw-r--r-- | .gitignore | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore index 8b9786a27e3..3181c9ba979 100644 --- a/.gitignore +++ b/.gitignore @@ -39,10 +39,10 @@ *# .#* -/src/mongo/*/*Debug/ -/src/mongo/*/*/*Debug/ -/src/mongo/*/*Release/ -/src/mongo/*/*/*Release/ +/src/mongo/*/*Debug*/ +/src/mongo/*/*/*Debug*/ +/src/mongo/*/*Release*/ +/src/mongo/*/*/*Release*/ /src/mongo/*/ipch /src/mongo/*/*/ipch /src/mongo/db/.gdb* |