Index: tools/gyp/msvs.gypi |
diff --git a/tools/gyp/msvs.gypi b/tools/gyp/msvs.gypi |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d7fea5aa5efdbc9e14194e65156bbe8e269e1423 |
--- /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. Specify your |
+ # custom msvs_configuration_attributes in target_defaults to add them to |
ricow1
2012/09/18 06:34:31
in target_defaults? this is what we are doing righ
ahe
2012/09/18 07:25:23
It should be something like this:
Instead, specif
Johnni Winther
2012/09/18 07:40:41
Done.
|
+ # targets instead. |
+ 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', |
+ 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
+ }, |
+ } |
+} |