diff options
author | Tad Marshall <tad@10gen.com> | 2012-11-07 08:03:55 -0500 |
---|---|---|
committer | Tad Marshall <tad@10gen.com> | 2012-11-07 08:32:39 -0500 |
commit | 5a7456f2c726953fd7c433d96c76e9b0a1ba6105 (patch) | |
tree | 6c0d608fd7c9acaea69b7f433f35162a253a9358 /.gitignore | |
parent | 15a65451256ae84e7b5062ce995c2956e8c6f37b (diff) | |
download | mongo-5a7456f2c726953fd7c433d96c76e9b0a1ba6105.tar.gz |
SERVER-7565 SERVER-7126 SERVER-7576 Visual Studio require Python, run Python scripts
This commit makes the Visual Studio builds require Python to be installed.
Add Pre-Build Events to Visual Studio projects to run the same Python
scripts that the scons build runs to create src/mongo/base/error_codes.cpp,
src/mongo/base/error_codes.h, src/mongo/db/auth/action_type.h and
src/mongo/db/auth/action_type.cpp.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore index d7be8c396f0..8b9786a27e3 100644 --- a/.gitignore +++ b/.gitignore @@ -97,7 +97,6 @@ scratch /libmongotestfiles.* /libmongoshellfiles.* - /emr.jar *.class @@ -135,15 +134,20 @@ debian/mongodb *.includes *.orig +#built by Visual Studio +src/mongo/base/error_codes.cpp +src/mongo/base/error_codes.h +src/mongo/db/auth/action_type.cpp +src/mongo/db/auth/action_type.h +src/mongo/shell/mongo-server.cpp +src/mongo/shell/mongo.cpp +src/third_party/js-1.7/jsautocfg.h +src/third_party/js-1.7/jsautokw.h # old things that should be removed # maybe remove this mid 2012 src/third_party/js-1.7/jscpucfg src/third_party/js-1.7/jskwgen src/mongo/buildinfo.cpp -src/mongo/shell/mongo-server.cpp -src/mongo/shell/mongo.cpp -src/third_party/js-1.7/jsautocfg.h -src/third_party/js-1.7/jsautokw.h buildinfo.cpp /.settings/ |