Replies: 8 comments
-
|
You should set your include search paths properly. |
Beta Was this translation helpful? Give feedback.
-
What? Arc generates the directories (Based on the existence of the namespace or not in the xml file) |
Beta Was this translation helpful? Give feedback.
-
|
Because by our convention |
Beta Was this translation helpful? Give feedback.
-
|
This: poco/ActiveRecord/Compiler/src/Compiler.cpp Line 166 in 419433c Seems to contradict that statement. |
Beta Was this translation helpful? Give feedback.
-
|
why? |
Beta Was this translation helpful? Give feedback.
-
|
That line places them into a directory (In the project) under |
Beta Was this translation helpful? Give feedback.
-
|
Yes, because that's the exact same convention used for all of the Poco sources. And in non of the Poco .cpp files do we #include with "../include/Poco/Whatever.h". Because the build system sets an include search path. |
Beta Was this translation helpful? Give feedback.
-
|
I'm not disagreeing with the "Poco Build System". |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
It generates code into
includeandsrcsubdirectories. BUT does not reference them in the actual code locationsi.e. it does the following
#include "CtrFiles.h"But Should be
#include "../include/CtrFiles.h"This led to unknown type
IDbeing usedBeta Was this translation helpful? Give feedback.
All reactions