2025-02-05 13:03:32 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
2025-02-21 17:35:10 +02:00
|
|
|
#include <QDir>
|
2025-02-05 13:03:32 +02:00
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
void NimMain();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
|
{
|
2025-02-21 17:35:10 +02:00
|
|
|
Q_INIT_RESOURCE(resources);
|
2025-02-05 13:03:32 +02:00
|
|
|
NimMain();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|