aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/webengine/webengine.go
blob: 600dbb6cbfa8b95aefa846b91e0eec35a3420e45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package webengine

// #cgo CPPFLAGS: -I./
// #cgo CXXFLAGS: -std=c++0x -pedantic-errors -Wall -fno-strict-aliasing
// #cgo LDFLAGS: -lstdc++
// #cgo pkg-config: Qt5WebEngine
//
// #include "cpp/webengine.h"
import "C"

import "github.com/obscuren/qml"

// Initializes the WebEngine extension.
func Initialize() {
    qml.RunMain(func() {
        C.webengineInitialize()
    })
}