forked from I2P_Developers/i2p.i2p
26 lines
548 B
Groovy
26 lines
548 B
Groovy
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir 'src'
|
|
srcDir 'build/messages-src'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compile project(':router')
|
|
compile project(':installer')
|
|
compile project(':apps:systray')
|
|
}
|
|
|
|
// Create the java files from the po files. The jar task will compile them.
|
|
// This requires gettext 0.19 or higher.
|
|
// We don't support the "slow way"
|
|
task bundle {
|
|
doLast {
|
|
println "apps/desktopgui/bundle-messages.sh".execute().text
|
|
}
|
|
}
|
|
jar.dependsOn bundle
|