OLD | NEW |
---|---|
1 # Copyright (c) 2009 Google Inc. All rights reserved. | 1 # Copyright (C) 2013 Opera Software ASA. All rights reserved. |
2 # This file is an original work developed by Opera Software ASA | |
2 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 4 # found in the LICENSE file. |
4 | 5 |
5 { | 6 { |
6 'targets': [ | 7 'targets': [ |
7 { | 8 { |
8 'target_name': 'hello', | 9 'target_name': 'hello', |
10 'product_extension': 'stuff', | |
11 'target_extension': 'stuff', | |
Nico
2013/09/17 17:11:54
So would one always set this for every target that
sigbjorn
2013/09/18 08:21:27
MSB8012 is thrown when the two are different, so a
Nico
2013/09/18 17:38:24
Do you need this flexibility?
sigbjorn
2013/09/19 07:49:03
No. At least not right now at Opera.
| |
9 'type': 'executable', | 12 'type': 'executable', |
10 'sources': [ | 13 'sources': [ |
11 'hello.c', | 14 'hello.c', |
12 ], | 15 ], |
13 }, | 16 } |
14 ], | 17 ] |
15 } | 18 } |
OLD | NEW |