« Prev 4.1.1 Task Parameters | Table of Contents | Next » 4.1.2.1 Configure Task |
Rscons recognizes special meaning for a few tasks:
For each of these tasks, a shortcut method of the same name as the task is
provided which is equivalent to calling the task()
method with the first
argument (task name) automatically filled in by the shortcut method.
For example:
default deps: "unpack_compiler" do puts "default task" end
is equivalent to:
task "default", deps: "unpack_compiler" do puts "default task" end
« Prev 4.1.1 Task Parameters | Table of Contents | Next » 4.1.2.1 Configure Task |