diff options
Diffstat (limited to 'Tests/RunCMake/IncompatibleQt/main.cpp')
-rw-r--r-- | Tests/RunCMake/IncompatibleQt/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/RunCMake/IncompatibleQt/main.cpp b/Tests/RunCMake/IncompatibleQt/main.cpp new file mode 100644 index 0000000..410e13c --- /dev/null +++ b/Tests/RunCMake/IncompatibleQt/main.cpp @@ -0,0 +1,8 @@ + +#include <QCoreApplication> + +int main(int argc, char** argv) +{ + QCoreApplication app(argc, argv); + return app.exec(); +} |