CMake:
* Truncate revision number (version_suffix) to numbers only (some versions of svn seem to add other strings)
#include <QtGui/QApplication>
#include "editor.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
editor w;
w.show();
return a.exec();
}