Created
April 18, 2011 13:16
-
-
Save devboy/925305 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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