Commit inicial

Signed-off-by: somebody_master <somebody_master@somebodyserver.mooo.com>
This commit is contained in:
2023-02-05 13:37:24 +01:00
commit e5cfb30517
10 changed files with 78 additions and 0 deletions

13
gdextension/SConstruct Normal file
View File

@ -0,0 +1,13 @@
env = SConscript("godot-cpp/SConstruct")
env.Append(CPPPATH="src/")
src = Glob("src/*.cpp")
if env["platform"] == "linux":
libpath = "../libtest{}{}".format( env["suffix"], env["SHLIBSUFFIX"] )
sharedlib = env.SharedLibrary(libpath, src)
elif env["platform"] == "windows":
pass
elif env["platform"] == "android":
pass

1
gdextension/godot-cpp Submodule

Submodule gdextension/godot-cpp added at f2b97528c1

1
gdextension/src/test.cpp Normal file
View File

@ -0,0 +1 @@
#include "test.h"

0
gdextension/src/test.h Normal file
View File