suriab / gyp

Automatically exported from code.google.com/p/gyp
0 stars 0 forks source link

ability to enable/disable SLN generation per GYP file #144

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Currently, a Visual Studio SLN file is generated for each GYP file. Add the
ability to selectively enable or disable SLN generation per GYP file with
an argument of 'msvs_generate_sln': 1 or 'msvs_generate_sln': 0 respectively.

If the argument is not specified then the default should be chosen based on
the target types that exist in the GYP file.

If the GYP file contains at least one 'executable' or 'shared_library'
target then default to creating an SLN. Otherwise, default to not creating
an SLN.

It may also be worth considered whether we should ever create an SLN for a
GYP file that contains only 'none' or 'settings' targets.

Original issue reported on code.google.com by magreenb...@gmail.com on 6 Mar 2010 at 12:12