mirror of
https://github.com/godotengine/godot
synced 2024-11-02 09:38:07 +00:00
21 lines
527 B
Python
21 lines
527 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
Import('env_modules')
|
|
|
|
env_cvtt = env_modules.Clone()
|
|
|
|
# Thirdparty source files
|
|
if env['builtin_squish']:
|
|
thirdparty_dir = "#thirdparty/cvtt/"
|
|
thirdparty_sources = [
|
|
"ConvectionKernels.cpp"
|
|
]
|
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
|
|
|
env_cvtt.add_source_files(env.modules_sources, thirdparty_sources)
|
|
env_cvtt.Append(CPPPATH=[thirdparty_dir])
|
|
|
|
# Godot source files
|
|
env_cvtt.add_source_files(env.modules_sources, "*.cpp")
|