blob: a3425f14c04660cad38451ce8f1828b6c25dc473 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <a_qt.hpp>
#include <b_qt.hpp>
#include <string>
int main()
{
if (a_qt::mocs_compilation().empty()) {
return -1;
}
if (b_qt::mocs_compilation().empty()) {
return -1;
}
return 0;
}
|