| OLD | NEW |
| 1 # Copyright 2015 Google Inc. |
| 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 1 # target_defaults used for executable targets that generate a console app | 5 # target_defaults used for executable targets that generate a console app |
| 2 { | 6 { |
| 3 'target_defaults': { | 7 'target_defaults': { |
| 4 'msvs_settings': { | 8 'msvs_settings': { |
| 5 'VCLinkerTool': { | 9 'VCLinkerTool': { |
| 6 #Allows for creation / output to console. | 10 #Allows for creation / output to console. |
| 7 #Console (/SUBSYSTEM:CONSOLE) | 11 #Console (/SUBSYSTEM:CONSOLE) |
| 8 'SubSystem': '1', | 12 'SubSystem': '1', |
| 9 | 13 |
| 10 #Console app, use main/wmain | 14 #Console app, use main/wmain |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 73 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 70 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', | 74 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', |
| 71 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', | 75 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework', |
| 72 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 76 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 73 ], | 77 ], |
| 74 }, | 78 }, |
| 75 }], | 79 }], |
| 76 ], | 80 ], |
| 77 }, | 81 }, |
| 78 } | 82 } |
| OLD | NEW |