diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2023-11-20 14:31:56 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-03-01 12:44:03 -0600 |
commit | 0ce9b6fd1d72139921ad3a20cb1933eb35873eb8 (patch) | |
tree | 9658983dd31a7e37ec3d4e3fbb1bbf5b0bf4995a /main | |
parent | dad6c774b019ef8c5dccb4a1955c6a77b41a323e (diff) | |
download | redot-engine-0ce9b6fd1d72139921ad3a20cb1933eb35873eb8.tar.gz |
Add two new COMSTR environment variables
Diffstat (limited to 'main')
-rw-r--r-- | main/SCsub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/SCsub b/main/SCsub index 79dc4bff15..3e7680bf89 100644 --- a/main/SCsub +++ b/main/SCsub @@ -17,7 +17,7 @@ env_main.Depends("#main/splash.gen.h", "#main/splash.png") env_main.CommandNoCache( "#main/splash.gen.h", "#main/splash.png", - env.Run(main_builders.make_splash, "Building splash screen header."), + env.Run(main_builders.make_splash), ) if not env_main["no_editor_splash"]: @@ -25,14 +25,14 @@ if not env_main["no_editor_splash"]: env_main.CommandNoCache( "#main/splash_editor.gen.h", "#main/splash_editor.png", - env.Run(main_builders.make_splash_editor, "Building editor splash screen header."), + env.Run(main_builders.make_splash_editor), ) env_main.Depends("#main/app_icon.gen.h", "#main/app_icon.png") env_main.CommandNoCache( "#main/app_icon.gen.h", "#main/app_icon.png", - env.Run(main_builders.make_app_icon, "Building application icon."), + env.Run(main_builders.make_app_icon), ) lib = env_main.add_library("main", env.main_sources) |