2018-04-30 01:25:46 +01:00
|
|
|
#!/usr/bin/env python
|
2024-06-11 15:19:07 -05:00
|
|
|
from misc.utility.scons_hints import *
|
2018-04-30 01:25:46 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
|
|
|
|
Import("env_modules")
|
2018-04-30 01:25:46 +01:00
|
|
|
|
|
|
|
|
env_bmp = env_modules.Clone()
|
|
|
|
|
|
2022-08-05 17:09:11 -05:00
|
|
|
# Godot source files
|
2018-04-30 01:25:46 +01:00
|
|
|
env_bmp.add_source_files(env.modules_sources, "*.cpp")
|