mirror of
https://github.com/saymrwulf/puncture.git
synced 2026-06-16 01:33:48 +00:00
9 lines
153 B
Go
9 lines
153 B
Go
//go:build !(darwin && cgo && desktop)
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("desktop build requires: darwin + cgo + -tags desktop")
|
|
}
|