beardsvibe / buildfox

Minimalistic Ninja generator
MIT License
50 stars 8 forks source link

Copy rule #161

Open jimon opened 8 years ago

jimon commented 8 years ago

From my experience copying file in a cross-platform fashion is a HUGE PAIN IS THE BUTT. So would be nice to provide a copy rule like this:

rule copy
    command = cp $in $out
    description = copying $in to $out

but supporting all feasible platforms.

quinor commented 8 years ago

You won't believe, there is a piece of build.fox from one of my projects, written from scratch by me:

rule copy
  command = cp $in $out
  description = copying $in to $out

I guess programmers just think in similar fashion...