OLD | NEW |
1 { | 1 { |
2 'targets': [{ | 2 'targets': [{ |
3 'target_name': 'abpshell', | 3 'target_name': 'abpshell', |
4 'type': 'executable', | 4 'type': 'executable', |
5 'dependencies': [ | 5 'dependencies': [ |
6 'libadblockplus.gyp:libadblockplus' | 6 'libadblockplus.gyp:libadblockplus' |
7 ], | 7 ], |
8 'sources': [ | 8 'sources': [ |
9 'src/Main.cpp', | 9 'src/Main.cpp', |
10 'src/Command.cpp', | 10 'src/Command.cpp', |
11 'src/GcCommand.cpp', | 11 'src/GcCommand.cpp', |
12 'src/HelpCommand.cpp', | 12 'src/HelpCommand.cpp', |
13 'src/FiltersCommand.cpp', | 13 'src/FiltersCommand.cpp', |
14 'src/MatchesCommand.cpp', | 14 'src/MatchesCommand.cpp', |
15 'src/PrefsCommand.cpp', | 15 'src/PrefsCommand.cpp', |
16 'src/SubscriptionsCommand.cpp' | 16 'src/SubscriptionsCommand.cpp' |
17 ], | 17 ], |
| 18 'msvs_settings': { |
| 19 'VCLinkerTool': { |
| 20 'SubSystem': '1', # Console |
| 21 } |
| 22 }, |
18 'xcode_settings': { | 23 'xcode_settings': { |
19 'OTHER_LDFLAGS': ['-stdlib=libstdc++'], | 24 'OTHER_LDFLAGS': ['-stdlib=libstdc++'], |
20 }, | 25 }, |
21 }] | 26 }] |
22 } | 27 } |
OLD | NEW |