Thread: Adding include directories [VS2003]

  1. #1
    Registered User
    Join Date
    Jun 2002
    Posts
    132

    Adding include directories [VS2003]

    This isn't a C++ related question, but I didn't know where else to ask. I need to make a batch file taht automatically adds include directories to VS2003. Is this possible?
    Y3K Network http://www.y3knetwork.com
    Bringing the software of the future on the net.

  2. #2
    Registered User Codeplug's Avatar
    Join Date
    Mar 2003
    Posts
    4,981
    You can use environment variables to specify settings within your project. If you have an evironment variable setup like this:
    Code:
        MY_INCLUDES=C:\projects\include
    Then in the project properties for additional include directories you can put "$(MY_INCLUDES)".

    gg

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 48
    Last Post: 09-26-2008, 03:45 AM
  2. Unable to open include file SDL_audio.h
    By rraj.be in forum C Programming
    Replies: 2
    Last Post: 06-28-2008, 08:04 PM
  3. process programming
    By St0rM-MaN in forum Linux Programming
    Replies: 2
    Last Post: 09-15-2007, 07:53 AM
  4. Adding MinGW Search Directories
    By Matt3000 in forum Windows Programming
    Replies: 1
    Last Post: 04-23-2007, 05:47 AM
  5. Classes inheretance problem...
    By NANO in forum C++ Programming
    Replies: 12
    Last Post: 12-09-2002, 03:23 PM