mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-25 19:28:57 +01:00
glfw: Sort C files in alphabetical order
This commit is contained in:
parent
f461ba2379
commit
289fb77d20
@ -21,6 +21,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"golang.org/x/sync/errgroup"
|
"golang.org/x/sync/errgroup"
|
||||||
@ -43,6 +44,10 @@ var srcs = []string{
|
|||||||
"glfw/src/egl_context.c",
|
"glfw/src/egl_context.c",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
sort.Strings(srcs)
|
||||||
|
}
|
||||||
|
|
||||||
type arch string
|
type arch string
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user