diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-06-23 22:03:41 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2017-06-25 07:55:01 +0700 |
commit | e3998528e021d2722b40bc1bcda809baaa2cce3b (patch) | |
tree | 5484259368bf73d1b429533fa36917c1f1030e67 /main | |
parent | a2e4b80ff5649504ed4bdc4b4c7f39c19ae6db6a (diff) |
BuildSystem: generated files have .gen.extension
Diffstat (limited to 'main')
-rw-r--r-- | main/SCsub | 8 | ||||
-rw-r--r-- | main/main.cpp | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/main/SCsub b/main/SCsub index 56dfbaa0f1..1675a6e6ab 100644 --- a/main/SCsub +++ b/main/SCsub @@ -47,11 +47,11 @@ env.add_source_files(env.main_sources, "*.cpp") Export('env') -env.Depends("#main/splash.h", "#main/splash.png") -env.Command("#main/splash.h", "#main/splash.png", make_splash) +env.Depends("#main/splash.gen.h", "#main/splash.png") +env.Command("#main/splash.gen.h", "#main/splash.png", make_splash) -env.Depends("#main/app_icon.h", "#main/app_icon.png") -env.Command("#main/app_icon.h", "#main/app_icon.png", make_app_icon) +env.Depends("#main/app_icon.gen.h", "#main/app_icon.png") +env.Command("#main/app_icon.gen.h", "#main/app_icon.png", make_app_icon) SConscript('tests/SCsub') diff --git a/main/main.cpp b/main/main.cpp index e00c136596..cd464de1aa 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -28,7 +28,7 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "main.h" -#include "app_icon.h" +#include "app_icon.gen.h" #include "core/register_core_types.h" #include "drivers/register_driver_types.h" #include "global_config.h" @@ -39,7 +39,7 @@ #include "script_debugger_local.h" #include "script_debugger_remote.h" #include "servers/register_server_types.h" -#include "splash.h" +#include "splash.gen.h" #include "input_map.h" #include "io/resource_loader.h" |