You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
running the makefile does not successfully build when it runs the go install or go build commands
even after setting GLFW_INCLUDE_DIR GLFW_LIB_DIR
I think this has something to do with how the make environment works on windows
'manual' builds are still possible, by setting the environment variables yourself
set CGO_CFLAGS=-I"dependencies/include"# set to location of your include folderset CGO_LDFLAGS=-L"dependencies/libs"# set to location of your libs folder
go install # or `go build`
when the variables are no longer needed, you can set them to nothing
CGO_CFLAGS=
CGO_LDFLAGS=
or if you are done, just close the terminal in use, they won't be permanently saved
The text was updated successfully, but these errors were encountered:
running the makefile does not successfully build when it runs the go install or go build commands
even after setting
GLFW_INCLUDE_DIR
GLFW_LIB_DIR
I think this has something to do with how the make environment works on windows
'manual' builds are still possible, by setting the environment variables yourself
when the variables are no longer needed, you can set them to nothing
or if you are done, just close the terminal in use, they won't be permanently saved
The text was updated successfully, but these errors were encountered: