summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/AutogenOriginDependsOff/main.cpp
blob: 3fb6c70951eba78b6f611a720aa68522a94ceb8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#include <string>

#include <a_qt.hpp>
#include <b_qt.hpp>

int main()
{
  if (a_qt::mocs_compilation().empty()) {
    return -1;
  }
  if (b_qt::mocs_compilation().empty()) {
    return -1;
  }
  return 0;
}