| OLD | NEW |
| 1 # target_defaults used for executable targets that generate a console app | 1 # target_defaults used for executable targets that generate a console app |
| 2 { | 2 { |
| 3 'target_defaults': { | 3 'target_defaults': { |
| 4 'msvs_settings': { | 4 'msvs_settings': { |
| 5 'VCLinkerTool': { | 5 'VCLinkerTool': { |
| 6 #Allows for creation / output to console. | 6 #Allows for creation / output to console. |
| 7 #Console (/SUBSYSTEM:CONSOLE) | 7 #Console (/SUBSYSTEM:CONSOLE) |
| 8 'SubSystem': '1', | 8 'SubSystem': '1', |
| 9 | 9 |
| 10 #Console app, use main/wmain | 10 #Console app, use main/wmain |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 '../experimental/SimpleiOSApp/iPad/MainWindow_iPad.xib', | 68 '../experimental/SimpleiOSApp/iPad/MainWindow_iPad.xib', |
| 69 '../experimental/SimpleiOSApp/iPhone/MainWindow_iPhone.xib', | 69 '../experimental/SimpleiOSApp/iPhone/MainWindow_iPhone.xib', |
| 70 ], | 70 ], |
| 71 'xcode_settings' : { | 71 'xcode_settings' : { |
| 72 'INFOPLIST_FILE' : '../experimental/SimpleiOSApp/tool-Info.plist', | 72 'INFOPLIST_FILE' : '../experimental/SimpleiOSApp/tool-Info.plist', |
| 73 }, | 73 }, |
| 74 }], | 74 }], |
| 75 ], | 75 ], |
| 76 }, | 76 }, |
| 77 } | 77 } |
| 78 | |
| 79 # Local Variables: | |
| 80 # tab-width:2 | |
| 81 # indent-tabs-mode:nil | |
| 82 # End: | |
| 83 # vim: set expandtab tabstop=2 shiftwidth=2: | |
| OLD | NEW |