aboutsummaryrefslogtreecommitdiff
path: root/examples/proguard-example/build/build.scala
blob: 2b3709e83d195c2a73ef6bc09929fcb82efb8b89 (plain) (blame)
1
2
3
4
5
6
7
8
9
import cbt._

class Build(val context: Context) extends ProGuard{
  def proguard = ProGuard( (Nil, """
    public class proguard_example.Main{
      public void main(java.lang.String[]);
    }
  """ ) )
}