Index: tools/gyp/msvs.gypi |
diff --git a/tools/gyp/msvs.gypi b/tools/gyp/msvs.gypi |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1ed657675109b15aadf8107aed28300d3f5b189b |
--- /dev/null |
+++ b/tools/gyp/msvs.gypi |
@@ -0,0 +1,17 @@ |
+# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
+# for details. All rights reserved. Use of this source code is governed by a |
+# BSD-style license that can be found in the LICENSE file. |
+ |
+{ |
+ 'target_defaults': { |
+ 'msvs_configuration_attributes': { |
+ # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT! |
+ # This block adds *project-wide* configuration settings to each project |
+ # file. It's almost always wrong to put things here. Instead, specify |
+ # your custom msvs_configuration_attributes in a target_defaults section |
+ # of a .gypi file that is explicitly included. |
+ 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', |
+ 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
+ }, |
+ } |
+} |