From b93e980e27d9e77526fcf84ad101fde5fd363404 Mon Sep 17 00:00:00 2001 From: Marco Antognini Date: Tue, 26 Jul 2011 12:17:16 +0200 Subject: [PATCH] Updated xocde templates --- .../SFML Application Base.xctemplate/TemplateInfo.plist | 2 +- .../SFML Application.xctemplate/TemplateInfo.plist | 6 ++++++ .../TemplateInfo.plist | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/xcode/templates/SFML Application Base.xctemplate/TemplateInfo.plist b/xcode/templates/SFML Application Base.xctemplate/TemplateInfo.plist index 886438fb2..0937a42b4 100644 --- a/xcode/templates/SFML Application Base.xctemplate/TemplateInfo.plist +++ b/xcode/templates/SFML Application Base.xctemplate/TemplateInfo.plist @@ -521,7 +521,7 @@ while (window.IsOpened()) window.Close(); // Escape pressed : exit - if (event.Type == sf::Event::KeyPressed && event.Key.Code == sf::Key::Escape) + if (event.Type == sf::Event::KeyPressed && event.Key.Code == sf::Keyboard::Escape) window.Close(); } diff --git a/xcode/templates/SFML Application.xctemplate/TemplateInfo.plist b/xcode/templates/SFML Application.xctemplate/TemplateInfo.plist index b5fc367b1..f401bfea3 100644 --- a/xcode/templates/SFML Application.xctemplate/TemplateInfo.plist +++ b/xcode/templates/SFML Application.xctemplate/TemplateInfo.plist @@ -84,6 +84,12 @@ subject to the following restrictions: WRAPPER_EXTENSION app + + GCC_PRECOMPILE_PREFIX_HEADER + NO + + GCC_PREFIX_HEADER + Configurations diff --git a/xcode/templates/SFML Command Line Tool Base.xctemplate/TemplateInfo.plist b/xcode/templates/SFML Command Line Tool Base.xctemplate/TemplateInfo.plist index 4cb77db99..6c1ac4466 100644 --- a/xcode/templates/SFML Command Line Tool Base.xctemplate/TemplateInfo.plist +++ b/xcode/templates/SFML Command Line Tool Base.xctemplate/TemplateInfo.plist @@ -506,7 +506,7 @@ while (window.IsOpened()) window.Close(); // Escape pressed : exit - if (event.Type == sf::Event::KeyPressed && event.Key.Code == sf::Key::Escape) + if (event.Type == sf::Event::KeyPressed && event.Key.Code == sf::Keyboard::Escape) window.Close(); }