OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
2 # for details. All rights reserved. Use of this source code is governed by a | |
3 # BSD-style license that can be found in the LICENSE file. | |
4 | |
5 { | |
6 'target_defaults': { | |
7 'msvs_configuration_attributes': { | |
8 # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT! | |
9 # This block adds *project-wide* configuration settings to each project | |
10 # file. It's almost always wrong to put things here. Specify your | |
11 # 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.
| |
12 # targets instead. | |
13 'OutputDirectory': '<(DEPTH)\\build\\$(ConfigurationName)', | |
14 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | |
15 }, | |
16 } | |
17 } | |
OLD | NEW |