Add Gtk app

This commit is contained in:
Rafostar
2020-08-31 20:47:10 +02:00
parent 734471475f
commit 918ba34885
6 changed files with 321 additions and 4 deletions

11
main.js Normal file
View File

@@ -0,0 +1,11 @@
imports.gi.versions.Gtk = '3.0';
const { Gst } = imports.gi;
const { App } = imports.clapper_src.app;
Gst.init(null);
function main()
{
let clapper = new App(arguments).run();
}