Click here to Skip to main content
15,894,343 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: terminology refresher class ?? Pin
Mircea Neacsu28-May-21 9:24
Mircea Neacsu28-May-21 9:24 
GeneralMessage Closed Pin
29-May-21 5:42
Member 1496877129-May-21 5:42 
GeneralRe: terminology refresher class ?? Pin
Richard MacCutchan29-May-21 5:53
mveRichard MacCutchan29-May-21 5:53 
AnswerRe: terminology refresher class ?? Pin
Richard MacCutchan27-May-21 21:26
mveRichard MacCutchan27-May-21 21:26 
GeneralMessage Closed Pin
28-May-21 5:32
Member 1496877128-May-21 5:32 
GeneralRe: terminology refresher class ?? Pin
Richard MacCutchan28-May-21 5:47
mveRichard MacCutchan28-May-21 5:47 
QuestionMessage Closed Pin
26-May-21 15:22
Member 1496877126-May-21 15:22 
AnswerRe: How to find include directive path? Pin
Richard MacCutchan26-May-21 21:11
mveRichard MacCutchan26-May-21 21:11 
Member 14968771 wrote:
The build process gets the #include of the library but fails to find the
first "#include in the library header file.

I am a little confused by some of your terminology, and also it is unclear which system you are using for the build. So a few possible ideas:
1. If this is using Visual Studio on Windows, you can add the locations of include directories to the Project settings. The compiler will search all such locations for include files.
2. If you are using a Makefile then add the include locations to the CPPFLAGS macro in the form "-I <include location>".
3. If the location of one of the headers is relative to the current directory then you can add the details to the #include statement thus:
C++
#include "subdir\library.h"

4. If it is something else then please provide the details.
GeneralMessage Closed Pin
27-May-21 11:29
Member 1496877127-May-21 11:29 
GeneralRe: How to find include directive path? Pin
Richard MacCutchan27-May-21 21:13
mveRichard MacCutchan27-May-21 21:13 
GeneralMessage Closed Pin
28-May-21 5:42
Member 1496877128-May-21 5:42 
GeneralRe: How to find include directive path? Pin
Richard MacCutchan28-May-21 5:49
mveRichard MacCutchan28-May-21 5:49 
GeneralMessage Closed Pin
28-May-21 6:13
Member 1496877128-May-21 6:13 
GeneralRe: How to find include directive path? Pin
Richard MacCutchan28-May-21 6:37
mveRichard MacCutchan28-May-21 6:37 
GeneralMessage Closed Pin
28-May-21 7:20
Member 1496877128-May-21 7:20 
GeneralRe: How to find include directive path? Pin
Richard MacCutchan28-May-21 21:04
mveRichard MacCutchan28-May-21 21:04 
Questionc+ + coding Pin
javaid musa24-May-21 18:17
javaid musa24-May-21 18:17 
AnswerRe: c+ + coding Pin
CPallini24-May-21 20:00
mveCPallini24-May-21 20:00 
QuestionOptimizing this code ? Pin
Duc Axenn24-May-21 0:56
Duc Axenn24-May-21 0:56 
SuggestionRe: Optimizing this code ? Pin
Richard MacCutchan24-May-21 0:02
mveRichard MacCutchan24-May-21 0:02 
GeneralRe: Optimizing this code ? Pin
Duc Axenn24-May-21 0:56
Duc Axenn24-May-21 0:56 
SuggestionRe: Optimizing this code ? Pin
Randor 24-May-21 2:30
professional Randor 24-May-21 2:30 
GeneralRe: Optimizing this code ? Pin
Duc Axenn24-May-21 4:21
Duc Axenn24-May-21 4:21 
GeneralRe: Optimizing this code ? Pin
Duc Axenn24-May-21 8:36
Duc Axenn24-May-21 8:36 
GeneralRe: Optimizing this code ? Pin
Randor 24-May-21 14:30
professional Randor 24-May-21 14:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.