pkg.tk-software.de/gotice@v0.4.1-0.20240224130243-6adec687b106/magefiles/magefile.go (about)

     1  //go:build mage
     2  
     3  package main
     4  
     5  import (
     6  	"pkg.tk-software.de/spartan/build"
     7  )
     8  
     9  // The application name.
    10  const AppName string = "gotice"
    11  
    12  // The build targets.
    13  var Targets []build.Target = []build.Target{
    14  	{Os: "windows", Arch: "amd64", Name: AppName + ".exe"},
    15  	{Os: "linux", Arch: "amd64", Name: AppName},
    16  }