cmake/Tests/QtAutogen/skipMoc.cpp

17 lines
286 B
C++
Raw Normal View History

2017-04-14 19:02:05 +02:00
#include "skipSource/qItemA.hpp"
#include "skipSource/qItemB.hpp"
#include "skipSource/qItemC.hpp"
2018-01-26 17:06:56 +01:00
#include "skipSource/qItemD.hpp"
2017-04-14 19:02:05 +02:00
int main(int, char**)
{
QItemA itemA;
2018-01-26 17:06:56 +01:00
QItemB itemB;
QItemC itemC;
QItemD itemD;
2017-04-14 19:02:05 +02:00
// Fails to link if the symbol is not present.
return 0;
}