mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +01:00
10 lines
267 B
Plaintext
10 lines
267 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
Import("env")
|
||
|
Import("env_modules")
|
||
|
|
||
|
env_lightmapper_rd = env_modules.Clone()
|
||
|
# Godot source files
|
||
|
env_lightmapper_rd.Prepend(CPPPATH=["#editor_modules/raycast/embree/include"])
|
||
|
env_lightmapper_rd.add_source_files(env.modules_sources, "*.cpp")
|