forked from bytecodealliance/wasmtime-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
includebuild.go
22 lines (18 loc) · 842 Bytes
/
includebuild.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//go:build includebuild
// +build includebuild
package wasmtime
// This file is not built and not included in BUILD.bazel;
// it is only used to prevent "go mod vendor" to prune the
// build directory.
import (
// Import these build directories in order to have them
// included in vendored dependencies.
// Cf. https://github.com/golang/go/issues/26366
_ "github.com/bytecodealliance/wasmtime-go/v19/build/include"
_ "github.com/bytecodealliance/wasmtime-go/v19/build/include/wasmtime"
_ "github.com/bytecodealliance/wasmtime-go/v19/build/linux-aarch64"
_ "github.com/bytecodealliance/wasmtime-go/v19/build/linux-x86_64"
_ "github.com/bytecodealliance/wasmtime-go/v19/build/macos-aarch64"
_ "github.com/bytecodealliance/wasmtime-go/v19/build/macos-x86_64"
_ "github.com/bytecodealliance/wasmtime-go/v19/build/windows-x86_64"
)