mirror of
https://github.com/taigrr/wails.git
synced 2026-04-17 12:15:02 -07:00
Compare commits
1 Commits
v2.0.0-alp
...
v2.0.0-alp
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9be539cfb8 |
@@ -1,3 +1,3 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
var version = "v2.0.0-alpha.4"
|
var version = "v2.0.0-alpha.5"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
module github.com/wailsapp/wails/v2
|
module github.com/wailsapp/wails/v2
|
||||||
|
|
||||||
go 1.13
|
go 1.15
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/davecgh/go-spew v1.1.1
|
github.com/davecgh/go-spew v1.1.1
|
||||||
|
|||||||
@@ -148,6 +148,13 @@ func (b *BaseBuilder) CompileProject(options *Options) error {
|
|||||||
// Default go build command
|
// Default go build command
|
||||||
commands := slicer.String([]string{"build"})
|
commands := slicer.String([]string{"build"})
|
||||||
|
|
||||||
|
// TODO: Work out if we can make this more efficient
|
||||||
|
// We need to do a full build as CGO doesn't detect updates
|
||||||
|
// to .h files, and we package assets into .h file. We could
|
||||||
|
// potentially try and see if the assets have changed but will
|
||||||
|
// this take as much time as a `-a` build?
|
||||||
|
commands.Add("-a")
|
||||||
|
|
||||||
var tags slicer.StringSlicer
|
var tags slicer.StringSlicer
|
||||||
tags.Add(options.OutputType)
|
tags.Add(options.OutputType)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user