DCLibraries/src/main.cpp

37 lines
679 B
C++

#ifdef WIN32
#include <QCoreApplication>
#include "tslib.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
return a.exec();
}
#else
#undef _FORTIFY_SOURCE
#include <unistd.h> // _exit(0)
#include <stdio.h>
// Must define the interpreter to be the dynamic linker
//#ifdef __LP64__
//#error "__LP64__ not defined for PTU5"
//#else
//const char service_interp[] __attribute__((section(".interp"))) = "/lib/ld-linux-armhf.so.3";
//#endif
int main(int argc, char *argv[]) {
(void)argc;
(void)argv;
printf("%s %s %s\n", APP_EXTENDED_VERSION, APP_BUILD_DATE, APP_BUILD_TIME);
_exit(0);
}
#endif