[linux] Better Go 1.16 support

This commit is contained in:
Lea Anthony
2022-01-31 21:21:48 +11:00
parent a624ee5e35
commit 6a10bf4d98
15 changed files with 15 additions and 0 deletions
+1
View File
@@ -1,4 +1,5 @@
//go:build darwin && !bindings
// +build darwin,!bindings
package appng
+1
View File
@@ -1,4 +1,5 @@
//go:build !dev && !production && !bindings && darwin
// +build !dev,!production,!bindings,darwin
package appng
+1
View File
@@ -1,4 +1,5 @@
//go:build !dev && !production && !bindings && linux
// +build !dev,!production,!bindings,linux
package appng
+1
View File
@@ -1,4 +1,5 @@
//go:build !dev && !production && !bindings && windows
// +build !dev,!production,!bindings,windows
package appng
+1
View File
@@ -1,4 +1,5 @@
//go:build linux && !bindings
// +build linux,!bindings
package appng
+1
View File
@@ -1,4 +1,5 @@
//go:build windows && !bindings
// +build windows,!bindings
package appng
@@ -1,4 +1,5 @@
//go:build darwin
// +build darwin
package desktop
@@ -1,4 +1,5 @@
//go:build windows
// +build windows
package desktop
@@ -1,4 +1,5 @@
//go:build windows
// +build windows
package windows
@@ -1,4 +1,5 @@
//go:build windows
// +build windows
package windows
@@ -1,4 +1,5 @@
//go:build windows
// +build windows
package windows
@@ -1,4 +1,5 @@
//go:build dev
// +build dev
// Package devserver provides a web-based frontend so that
// it is possible to run a Wails app in a browsers.
@@ -1,4 +1,5 @@
//go:build dev
// +build dev
package runtime
@@ -1,4 +1,5 @@
//go:build dev || bindings || (!dev && !production && !bindings)
// +build dev bindings !dev,!production,!bindings
package runtime
@@ -1,4 +1,5 @@
//go:build production && desktop
// +build production,desktop
package runtime