summaryrefslogtreecommitdiff
path: root/tests/projects/qt/console_static/src/main.cpp
blob: de25444ff527ec399fd88ba773d3c91699422d42 (plain)
1
2
3
4
5
6
7
8
9
#include <QCoreApplication>

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    printf("hello xmake\n");
    return a.exec();
}