Switch from GO111MODULE=off to GO111MODULE=auto (to match what is on release-7.0 and what we ultimately decided on)

This commit is contained in:
A.J. Beamon 2021-09-08 08:45:29 -07:00 committed by Aaron Molitor
parent ee1056cacd
commit 76ed965139
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ set(go_options_file ${GO_DEST}/src/fdb/generated.go)
set(go_env GOPATH=${GOPATH}
C_INCLUDE_PATH=${CMAKE_BINARY_DIR}/bindings/c/foundationdb:${CMAKE_SOURCE_DIR}/bindings/c
CGO_LDFLAGS=-L${CMAKE_BINARY_DIR}/lib
GO111MODULE=off)
GO111MODULE=auto)
foreach(src_file IN LISTS SRCS)
set(dest_file ${GO_DEST}/${src_file})