From 712749e9d7ede65779552fa34033c9b9422b4718 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Thu, 15 Jan 2015 02:57:23 -0800 Subject: [PATCH] Copy templates/iphone/Resources if it exists --- tools/platforms/IOSPlatform.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/platforms/IOSPlatform.hx b/tools/platforms/IOSPlatform.hx index dd607e151..55ea78999 100644 --- a/tools/platforms/IOSPlatform.hx +++ b/tools/platforms/IOSPlatform.hx @@ -444,6 +444,7 @@ class IOSPlatform extends PlatformTarget { context.HAS_LAUNCH_IMAGE = true; + FileHelper.recursiveCopyTemplate (project.templatePaths, "iphone/Resources", projectDirectory + "/Resources", context, true, false); FileHelper.recursiveCopyTemplate (project.templatePaths, "iphone/PROJ/haxe", projectDirectory + "/haxe", context); FileHelper.recursiveCopyTemplate (project.templatePaths, "haxe", projectDirectory + "/haxe", context); FileHelper.recursiveCopyTemplate (project.templatePaths, "iphone/PROJ/Classes", projectDirectory + "/Classes", context);