MacSummer / make-it-so

Automatically exported from code.google.com/p/make-it-so
1 stars 0 forks source link

Fails when ',' is used for delimiter for Additional Library Dierctories #21

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
While not explicitly documented, Visual Studio allows commas to be used to 
delimit Additional Directories. Many of our projects are set up this way. An 
error is generated by MakeItSo when commas are used.

To fix please replace the following line in ProjectParser_CPP.cs for both 2008 
and 2010:

    List<string> additionalLibraryDirectories = Utils.split(strAdditionalLibraryDirectories, ';');

with this line:

    List<string> additionalLibraryDirectories = Utils.split(strAdditionalLibraryDirectories, ';', ',');

Original issue reported on code.google.com by paulmisl...@gmail.com on 12 Sep 2012 at 6:19

GoogleCodeExporter commented 9 years ago
Done :)

Original comment by florian.sainjeon on 22 Aug 2013 at 1:12