renamed dlscript module to gdnative
This commit is contained in:
parent
0198d2e03c
commit
c7f8b22ba0
71 changed files with 2448 additions and 1300 deletions
14
modules/gdnative/SCsub
Normal file
14
modules/gdnative/SCsub
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
Import('env')
|
||||
|
||||
env.add_source_files(env.modules_sources, "*.cpp")
|
||||
env.add_source_files(env.modules_sources, "godot/*.cpp")
|
||||
|
||||
env.Append(CPPFLAGS=['-DGDAPI_BUILT_IN'])
|
||||
|
||||
if "platform" in env and env["platform"] == "x11": # there has to be a better solution?
|
||||
env.Append(LINKFLAGS=["-rdynamic"])
|
||||
env.use_ptrcall = True
|
||||
|
||||
Export('env')
|
||||
Loading…
Add table
Add a link
Reference in a new issue