Re: [gradle-user] compile a flex program with Gradle

2010-04-14 Thread gperlade
er. I have find one tutorial http://blog.ericdaugherty.com/2009/08/building-flex-applications-with-gradle.html here and I start form it. regards, Grégory Rene Groeschke wrote: > > Hi, > > Am 13.04.10 15:36, schrieb gperlade: >> Thanks you for the answers, but I think I haven't got be clear

Re: [gradle-user] compile a flex program with Gradle

2010-04-13 Thread gperlade
doLast{ > ant.mxmlc(file: "src/Bibliotheque.mxml") > } > } > > I hope this helps, > > regards, > > René > > Am 12.04.10 17:27, schrieb gperlade: >> I'm come back here because i have got an other problem. >>

Re: [gradle-user] compile a flex program with Gradle

2010-04-12 Thread gperlade
ant.mxmlc(file: "./src/Bibliotheque.mxml") { fileset(dir: "./libs"){ include('**') } } } But this doesn't work. Anyone say how to include this during a flex compile with Gradle? gperlade wrote: > > Hi Andr

Re: [gradle-user] compile a flex program with Gradle

2010-04-12 Thread gperlade
Hi Andrew and thanks for your reply. But no it's the solution (i have alreasy a FLEX_HOME environnement variable). I have finally found the solution. The variable ant.FLEX_HOME must be ant.FLEX_HOME="D:/flex3.2.0sdk" and not ant.FLEX_HOME="D:\flex3.2.0sdk" . So I have compialtion issue but no

[gradle-user] compile a flex program with Gradle

2010-04-12 Thread gperlade
Hi, I'm actually trying to compile a flex program with gradle, but I have got some trouble. Maybe somebody have already make a task to compile Flex and could share it? I found http://blog.ericdaugherty.com/2009/08/building-flex-applications-with-gradle.html this example but it doesn't work.