1// Work-around for issue with qmake: Since hb-common.cc has #include "hb-static.cc" in it,
2// qmake will assume it is included and ignore it in the SOURCES list. But the #include
3// is protected inside an #ifdef and will not be used, so hb-static.cc ends up not being
4// linked at all and we get missing symbols. We work around this by including both in
5// the same compilation unit.
6
7#include "src/hb-common.cc"
8#include "src/hb-static.cc"
9