Method: Airake::Projects::Flash#mxmlc

Defined in:
lib/airake/projects/flash.rb

#mxmlc(options = {}) ⇒ Object

Flex compiler command for this project



22
23
24
25
26
27
28
# File 'lib/airake/projects/flash.rb', line 22

def mxmlc(options = {})
  options = options.merge({ :swf_path => @swf_path, :target_file => @target_file, :lib_dir => @lib_dir, 
    :src_dirs => @src_dirs, :debug => @debug, :mxmlc_extra_opts => @mxmlc_extra_opts, 
    :mxmlc_path => @mxmlc_path })

  Airake::Commands::Mxmlc.new(options)
end