Open
Description
I am using the command "scons platform=windows generate_bindings=yes use_mingw=yes" with no success.
This is what the cmd prompt looks like when I run that command:
I am using Python 3.7.6
and
Scons Version 4.3.0
I am using the header files from
https://github.com/godotengine/godot-headers
I was able to get Scons to compile a HelloWorld project using this SConsctruct file.
TOOLS = ['mingw']
COMPILER_PATH = 'C:/MinGW/bin'
env = Environment(tools=TOOLS)
env.PrependENVPath('PATH', COMPILER_PATH)
env.Program('TestApp', 'main.cpp')
Any help would be greatly appreciated! Thank you!