Fix repo and package name

This commit is contained in:
Kagami Hiiragi
2018-04-13 19:17:25 +03:00
parent 0e7e133166
commit abd01f4c8d
6 changed files with 7 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
export GOPATH = $(PWD)
testdata:
git clone https://github.com/Kagami/go-dlib-testdata testdata
git clone https://github.com/Kagami/go-face-testdata testdata
gofmt-staged:
./gofmt-staged.sh

View File

@@ -1,6 +1,6 @@
# go-dlib
# go-face
Partial [dlib](https://github.com/davisking/dlib) bindings for Go.
Face recognition for Go.
## License

View File

@@ -1,4 +1,4 @@
package dlib
package face
// #include <stdint.h>
// #include "facerec.h"

View File

@@ -1,4 +1,4 @@
package dlib
package face
// #cgo pkg-config: dlib-1
// #cgo CXXFLAGS: -std=c++1z -Wall -O3 -DNDEBUG -march=native

View File

@@ -1,4 +1,4 @@
package dlib
package face
// #include <stdlib.h>
// #include <stdint.h>

View File

@@ -1,4 +1,4 @@
package dlib
package face
import (
"testing"