mirror of
https://github.com/gosticks/gml.git
synced 2025-10-16 12:05:33 +00:00
49 lines
890 B
Go
49 lines
890 B
Go
/*
|
|
* GML - Go QML
|
|
* Copyright (c) 2019 Roland Singer [roland.singer@deserbit.com]
|
|
* Copyright (c) 2019 Sebastian Borchers [sebastian@deserbit.com]
|
|
*/
|
|
|
|
package build
|
|
|
|
import (
|
|
"html/template"
|
|
"os"
|
|
)
|
|
|
|
func prepareQtProject(ctx *Context) (err error) {
|
|
tmpl, err := template.New("t").Parse(qtProData)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// Create or open the config file.
|
|
f, err := os.Create(ctx.QtProFile)
|
|
if err != nil {
|
|
return
|
|
}
|
|
defer func() {
|
|
derr := f.Close()
|
|
if derr != nil && err == nil {
|
|
err = derr
|
|
}
|
|
}()
|
|
|
|
return tmpl.Execute(f, &ctx)
|
|
}
|
|
|
|
const qtProData = `
|
|
QT += core qml quick
|
|
|
|
TEMPLATE = lib
|
|
CONFIG += staticlib
|
|
|
|
HEADERS += {{.GMLBindingDir}}/headers/*.h {{.CGenDir}}/*.h {{.CPPGenDir}}/*.h
|
|
SOURCES += {{.GMLBindingDir}}/sources/*.cpp {{.CPPGenDir}}/*.cpp
|
|
|
|
OBJECTS_DIR = {{.BuildDir}}
|
|
MOC_DIR = {{.BuildDir}}
|
|
UI_DIR = {{.BuildDir}}
|
|
TARGET = {{.BuildDir}}/gml
|
|
`
|