Using OSX 10.7.4 , Xcode 4.5.1 with Glider (Cider) 1.7.2
The Enterprise level package provides a template project called /App , but the instructions are insufficient to start a project on iOS.
I install Xcode 4.5.1
I copy the template to a new project home
cp -R /App to ~/MyProject
I tell Glider my project home is in ~/MyProject/Corona , where the main.lua resides.
I cannot build because the main.lua references:
> local library = require “plugin.library”
but there’s no plugin/library.lua so it’s just left as a mystery.
What you need to do, is
> sudo ~/MyProject/mac/build.sh
This gives permission to create a PLUGIN_DIR via ~/MyProject/mac/Plugin.xcodeproj/project.pbxproj
Then you run your project and get:
WARNING: The ‘plugin.library’ library is not available on this platform.
What did I do wrong? What did I miss?