1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-07 22:54:14 +01:00

13 lines
232 B
C++

#include <QtCore/QCoreApplication>
#include <QTextStream>
#include "uavobjectstest.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
UAVObjectsTest *test = new UAVObjectsTest();
return a.exec();
}