Skip to content

Instantly share code, notes, and snippets.

@devboy
Created April 18, 2011 13:16
Show Gist options
  • Save devboy/925305 to your computer and use it in GitHub Desktop.
Save devboy/925305 to your computer and use it in GitHub Desktop.
require 'buildr/as3'
define "AdvancedExample" do
define "MyApplication" do
# use the mxmlc compiler to create a swf
compile.using :mxmlc
# define the FlexSDK to use by version
compile.options[:flexsdk] = FlexSDK.new("4.1.0.16076")
# define main-class to use for the compiler
compile.options[:main] = _(:src,:main,:as3) + "/MyApplication.as"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment