wangyu5 / gyp

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

AdditionalDependencies for VCLibrarianTool #242

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a target with the following section:

    'msvs_settings': {
      'VCLibrarianTool': {
        'AdditionalDependencies': [
          'a.lib',
          'b.lib',
          'c.lib',
        ]
      },
    },

2. Generate VS project from it
3. Build the project

What is the expected output? What do you see instead?
Project should normally build. Instead it complains that a.lib;b.lib;c.lib is 
not found.

What version of the product are you using? On what operating system?
gyp_chromium

Please provide any additional information below.
GYP should use spaces to separate entries in the AdditionalDependencies 
property.

Original issue reported on code.google.com by rryk...@gmail.com on 14 Dec 2011 at 4:04