Skip to content
Snippets Groups Projects
build.xml 632 B
Newer Older
  • Learn to ignore specific revisions
  • <?xml version="1.0" encoding="UTF-8"?>
    
    herwin's avatar
    herwin committed
    <project name="ipaaca-java"  default="run">
    
       <import file="../../../soashared/ant/build.xml" />
       <!-- import file="../../../HmiBuild/build.xml" / -->
    
       <target name="dist">
          <echo>FIXME - Ramin's hack: JAVA - DOING NOTHING ON DIST</echo>
       </target>
    
       <target name="-pre-compilation">
         <echo message="Compiling protobuf file" />
         <mkdir dir="generatedsrc"/>
         <exec executable="protoc">
            <arg value="--proto_path=../proto" />
            <arg value="../proto/ipaaca.proto" />
            <arg value="--java_out=generatedsrc/" />
         </exec>
       </target>
    
    herwin's avatar
    herwin committed