glfw: Sort C files in alphabetical order

This commit is contained in:
Hajime Hoshi 2019-05-20 03:42:50 +09:00
parent f461ba2379
commit 289fb77d20
3 changed files with 7 additions and 2 deletions

View File

@ -21,6 +21,7 @@ import (
"os"
"os/exec"
"path/filepath"
"sort"
"strings"
"golang.org/x/sync/errgroup"
@ -43,6 +44,10 @@ var srcs = []string{
"glfw/src/egl_context.c",
}
func init() {
sort.Strings(srcs)
}
type arch string
const (

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long