2019-11-11 23:01:05 +01:00
|
|
|
|
2020-02-01 23:06:01 +01:00
|
|
|
#include <string>
|
|
|
|
|
2019-11-11 23:01:05 +01:00
|
|
|
#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;
|
|
|
|
}
|