Author Topic: [SOLVED] MS VC Solution problem with semi colon separated include ...  (Read 3986 times)

Offline VincentB

  • Multiple posting newcomer
  • *
  • Posts: 28
Dear Code::Blocks experts,

Sorry to bother you again with MS VC++ import: I met a problem with importing an MS Visual Solution, some include search directories were separated by semi-colons (this is the standard list separator in France) instead of commas. For instance
Code
some/directory,some_other/directory;and/this/directory
Visual supports both separators, but Code::Blocks misinterpreted the semi-colon as if it was part of the path name, and I got this in the include search directory list :
Code
some/directory
some_other/directory;and/this/directory
Instead of the expected and wanted correct result:
Code
some/directory
some_other/directory
and/this/directory

Please tell me if I am to log one bug report on Berlios.

 Regards,
                     Vincent.


« Last Edit: March 26, 2007, 09:22:13 am by VincentB »

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Please file a bug-report. :)
Be a part of the solution, not a part of the problem.

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
@Vincent

No need to file a bug report. I've applied necessary fix. :)
Be a part of the solution, not a part of the problem.

Offline VincentB

  • Multiple posting newcomer
  • *
  • Posts: 28
Thank you,

I will edit this thread title as [SOLVED]

Best regards,
                        Vincent.