-
Notifications
You must be signed in to change notification settings - Fork 38
/
config.go
21 lines (18 loc) · 976 Bytes
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package iec61850
// this file is used to import all the packages that are needed include cgo files
// if you want to use the cgo files, you should import this file
import (
_ "github.com/wendy512/iec61850/libiec61850/inc/common/inc"
_ "github.com/wendy512/iec61850/libiec61850/inc/goose"
_ "github.com/wendy512/iec61850/libiec61850/inc/hal/inc"
_ "github.com/wendy512/iec61850/libiec61850/inc/iec61850/inc"
_ "github.com/wendy512/iec61850/libiec61850/inc/iec61850/inc_private"
_ "github.com/wendy512/iec61850/libiec61850/inc/logging"
_ "github.com/wendy512/iec61850/libiec61850/inc/mms/inc"
_ "github.com/wendy512/iec61850/libiec61850/inc/mms/inc_private"
_ "github.com/wendy512/iec61850/libiec61850/inc/mms/iso_mms/asn1c"
_ "github.com/wendy512/iec61850/libiec61850/lib/linux64"
_ "github.com/wendy512/iec61850/libiec61850/lib/linux_armv7l"
_ "github.com/wendy512/iec61850/libiec61850/lib/linux_armv8"
_ "github.com/wendy512/iec61850/libiec61850/lib/win64"
)