Added custom editor splash (including sponsor logo).
This commit is contained in:
parent
c93cb30cbb
commit
cf84ee22a9
5 changed files with 35 additions and 1 deletions
|
|
@ -188,6 +188,7 @@ opts.Add(BoolVariable('builtin_squish', "Use the builtin squish library", True))
|
|||
opts.Add(BoolVariable('builtin_thekla_atlas', "Use the builtin thekla_altas library", True))
|
||||
opts.Add(BoolVariable('builtin_zlib', "Use the builtin zlib library", True))
|
||||
opts.Add(BoolVariable('builtin_zstd', "Use the builtin zstd library", True))
|
||||
opts.Add(BoolVariable('no_editor_splash', "Don't use the custom splash screen for the editor", False))
|
||||
|
||||
# Environment setup
|
||||
opts.Add("CXX", "C++ compiler")
|
||||
|
|
@ -239,6 +240,9 @@ if (env_base['target'] == 'debug'):
|
|||
env_base.Append(CPPFLAGS=['-DDEBUG_MEMORY_ALLOC'])
|
||||
env_base.Append(CPPFLAGS=['-DSCI_NAMESPACE'])
|
||||
|
||||
if (env_base['no_editor_splash']):
|
||||
env_base.Append(CPPFLAGS=['-DNO_EDITOR_SPLASH'])
|
||||
|
||||
if not env_base['deprecated']:
|
||||
env_base.Append(CPPFLAGS=['-DDISABLE_DEPRECATED'])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue