From 862e8db0632371e464959136f783aebd9dc81d96 Mon Sep 17 00:00:00 2001 From: Ross Boucher Date: Tue, 30 Mar 2010 12:09:10 -0700 Subject: [PATCH] Sprite images recursively. --- Tools/capp/Resources/Templates/Application/Jakefile | 2 +- Tools/capp/Resources/Templates/NibApplication/Jakefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/capp/Resources/Templates/Application/Jakefile b/Tools/capp/Resources/Templates/Application/Jakefile index 2fa0c14f9..d27bba79f 100644 --- a/Tools/capp/Resources/Templates/Application/Jakefile +++ b/Tools/capp/Resources/Templates/Application/Jakefile @@ -27,7 +27,7 @@ app ("__project.nameasidentifier__", function(task) task.setEmail("__organization.email__"); task.setSummary("__project.name__"); task.setSources((new FileList("**/*.j")).exclude(FILE.join("Build", "**"))); - task.setResources(new FileList("Resources/*")); + task.setResources(new FileList("Resources/**")); task.setIndexFilePath("index.html"); task.setInfoPlistPath("Info.plist"); diff --git a/Tools/capp/Resources/Templates/NibApplication/Jakefile b/Tools/capp/Resources/Templates/NibApplication/Jakefile index 41505c40a..5b44b5db3 100644 --- a/Tools/capp/Resources/Templates/NibApplication/Jakefile +++ b/Tools/capp/Resources/Templates/NibApplication/Jakefile @@ -27,7 +27,7 @@ app ("__project.nameasidentifier__", function(task) task.setEmail("__organization.email__"); task.setSummary("__project.name__"); task.setSources((new FileList("**/*.j")).exclude(FILE.join("Build", "**"))); - task.setResources(new FileList("Resources/*")); + task.setResources(new FileList("Resources/**")); task.setIndexFilePath("index.html"); task.setInfoPlistPath("Info.plist"); task.setNib2CibFlags("-R Resources/");