CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    John E is offline Elite Member Power Poster
    Join Date
    Apr 2001
    Location
    Manchester, England
    Posts
    4,835

    [RESOLVED] Project based include directories.

    Most modern IDEs allow you to define global search directories (i.e. for include files and library files that you'll probably need for all your projects) but they also allow you to define local search directories too (i.e. search directories that are specific to a particular project and don't affect your other projects). Maybe I'm missing something but I've always been disappointed at Visual Studio's apparent lack of "project-based" search directories. Admittedly I'm still using Visual Studio 2005 (VC8) which is quite old now - but has this situation improved in more recent versions? It seems to be a glaring omission in an otherwise superb development IDE.
    "A problem well stated is a problem half solved.” - Charles F. Kettering

  2. #2
    Join Date
    May 2002
    Location
    Lindenhurst, NY
    Posts
    867

    Re: Project based include directories.

    In VS 2008 it's here...I thought this was also in VS 2005 but I could be wrong:

    Right click project -> Properties -> Configuration Properties -> C/C++ -> General -> Additional Include Directories.

  3. #3
    John E is offline Elite Member Power Poster
    Join Date
    Apr 2001
    Location
    Manchester, England
    Posts
    4,835

    Re: Project based include directories.

    Ah, it was there all along and I didn't see it !
    "A problem well stated is a problem half solved.” - Charles F. Kettering

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured