summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorU-ELIOT-019992DFC\Administrator <Administrator@eliot-019992dfc.(none)>2009-02-11 09:00:52 -0500
committerU-ELIOT-019992DFC\Administrator <Administrator@eliot-019992dfc.(none)>2009-02-11 09:00:52 -0500
commitb0a92ccc83de907dabcc0e9242fc3c9982712927 (patch)
tree1d692ea50ec845f053bb8ddc905173fa515f307f
parentbe9ed914f65a1adbae8f21a56a8934b43497a54b (diff)
downloadmongo-b0a92ccc83de907dabcc0e9242fc3c9982712927.tar.gz
v8 dependency - shell now works on windows
-rw-r--r--SConstruct3
1 files changed, 3 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 180a757143f..e66d9e65a57 100644
--- a/SConstruct
+++ b/SConstruct
@@ -574,6 +574,9 @@ else:
shellEnv.Append( LIBPATH=[ "." ] )
shellEnv.Append( LIBS=[ "mongoclient"] )
shellEnv.Program( "mongo" , Glob( "shell/*.cpp" ) );
+
+ if windows:
+ shellEnv.Append( LIBS=["winmm.lib"] )
# ---- RUNNING TESTS ----