mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-17 13:07:35 +02:00
Not sure about the cert/key situation. Seemed fragile on macos. Hopefully windows works without too much library static linking insanity.
10 lines
161 B
C++
10 lines
161 B
C++
#include <QCoreApplication>
|
|
#include "App.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
App::miscPreAppFixups();
|
|
App app(argc, argv);
|
|
|
|
return app.exec();
|
|
}
|