mirror of
https://github.com/godotengine/godot.git
synced 2024-11-14 16:13:08 +00:00
2cf781d3c6
Fixes #6156.
9 lines
221 B
Plaintext
9 lines
221 B
Plaintext
Import('env')
|
|
|
|
env.add_source_files(env.modules_sources,"*.cpp")
|
|
env.add_source_files(env.modules_sources,"*.c")
|
|
#TODO: Make it possible to build against system enet
|
|
env.Append(CPPPATH = ["#modules/enet"])
|
|
|
|
Export('env')
|