mirror of
https://github.com/status-im/Tablet-build.git
synced 2026-08-31 11:41:08 +00:00
15 lines
191 B
C++
15 lines
191 B
C++
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <QDir>
|
|
|
|
extern "C" {
|
|
void NimMain();
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
Q_INIT_RESOURCE(resources);
|
|
NimMain();
|
|
return 0;
|
|
}
|