5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 08:41:41 +08:00

[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
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405
15 changed files with 15 additions and 0 deletions

View File

@ -1,4 +1,5 @@
//go:build darwin && !bindings
// +build darwin,!bindings
package appng

View File

@ -1,4 +1,5 @@
//go:build !dev && !production && !bindings && darwin
// +build !dev,!production,!bindings,darwin
package appng

View File

@ -1,4 +1,5 @@
//go:build !dev && !production && !bindings && linux
// +build !dev,!production,!bindings,linux
package appng

View File

@ -1,4 +1,5 @@
//go:build !dev && !production && !bindings && windows
// +build !dev,!production,!bindings,windows
package appng

View File

@ -1,4 +1,5 @@
//go:build linux && !bindings
// +build linux,!bindings
package appng

View File

@ -1,4 +1,5 @@
//go:build windows && !bindings
// +build windows,!bindings
package appng

View File

@ -1,4 +1,5 @@
//go:build darwin
// +build darwin
package desktop

View File

@ -1,4 +1,5 @@
//go:build windows
// +build windows
package desktop

View File

@ -1,4 +1,5 @@
//go:build windows
// +build windows
package windows

View File

@ -1,4 +1,5 @@
//go:build windows
// +build windows
package windows

View File

@ -1,4 +1,5 @@
//go:build windows
// +build windows
package windows

View File

@ -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.

View File

@ -1,4 +1,5 @@
//go:build dev
// +build dev
package runtime

View File

@ -1,4 +1,5 @@
//go:build dev || bindings || (!dev && !production && !bindings)
// +build dev bindings !dev,!production,!bindings
package runtime

View File

@ -1,4 +1,5 @@
//go:build production && desktop
// +build production,desktop
package runtime