Linux

Godot GDExtensions PART 1: Setup on Windows and Linux



Like and Subscribe for more Godot Tutorials
#SContruct File minGW code for Windows Users
import os
env = Environment(ENV={‘PATH’: os.environ[‘PATH’]},tools=[‘mingw’])
env.Program(‘program-name’,’main.cpp’)
####
#or without Importing os
env = Environment(tools=[“mingw”],ENV={‘PATH’ :”C:/minGW/bin”})
env.Program(‘program-name’,’main.cpp’)

Tutorials GitRepo:

Discord:
Twitter:
Instagram:
Twitch:
#gdscript #godotengine #tutorial #gdextensions

[ad_2]

source

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button