Author Topic: Import from MS Visual Sutdio Solution force include is lost  (Read 3775 times)

Offline VincentB

  • Multiple posting newcomer
  • *
  • Posts: 28
Import from MS Visual Sutdio Solution force include is lost
« on: March 16, 2007, 06:38:29 pm »
Dear Code::Blocks experts,

When I import a solution from Visual C++ Express with code block (nightly build 3711), I am losing the forced include information. In Visual C++ Express I have some forced include files specified in my project foo.vcproj, for instance this forced include file is foo.h, and foo.h is in the same directory as the foo.vcproj file and is specified in the foo.vcproj by this line :

Code
				ForcedIncludeFiles="$(ProjectDir)foo.h"

When I made the import, assuming gcc is used, I would assume that this directive would have translated to a
Menu:Project -> Menu:Build Options ->Tab:Other Options -> This line : -include foo.h

But it did not, this information was lost, and I had to retype it by hand.
Is there any plan to correct this problem in future nightly builds ?

Very best regards, and congratulation to Code::Blocks team for their great job,
                          Vincent.

 

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: Import from MS Visual Sutdio Solution force include is lost
« Reply #1 on: March 16, 2007, 08:14:14 pm »
Please file a bug report at Berlios so that we don't forget it. :)

Quote
https://developer.berlios.de/bugs/?func=addbug&group_id=5358

You may need to create an account if you don't have one.

Regards,

Biplab
Be a part of the solution, not a part of the problem.

Offline VincentB

  • Multiple posting newcomer
  • *
  • Posts: 28