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.
-
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.
-
It generates code into
include
andsrc
subdirectories. 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
ID
being usedBeta Was this translation helpful? Give feedback.
All reactions