Skip to content
Snippets Groups Projects
build.xml 464 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="../../../hmibuild/build.xml" />
    
       <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