vin
vin

Reputation: 879

include a file from seperate folder in c++

well, I am trying to include a header file in my project, while the header actually belongs to the other project in the same workspace. I don't want to do something like ../../folder_name/header_file_name. If it helps I am using VisualC++ 6.0. Thanks!

Upvotes: 2

Views: 2368

Answers (4)

jacobsee
jacobsee

Reputation: 1478

For Visual C++ 6.0, go to Tools / Options / Directories / Show directories for: Include files, and then add the full path to the folder where your other header file resides.

Upvotes: 0

You can tell to compiler a path to search header files.
Look at your project configuration. Look at to the first pict here: http://www.steptools.com/support/stdev_docs/help/settings_vc6.html

Upvotes: 0

Brandon Kreisel
Brandon Kreisel

Reputation: 1646

 1. Right-click on the project, and select Properties.
 2. Select Configuration Properties->C/C++->General.
 3. Set the path under Additional Include Directories.

Upvotes: 2

Dancrumb
Dancrumb

Reputation: 27579

Add the other folder as an Include Directory to your project, so that it's in the search path.

You may also need to add a Library Directory if this header has a corresponding object file.

Upvotes: 0

Related Questions