Revision 0b6c6e876b7ba111f3ba374d1b3843ff6cf3bbbb authored by Timothy Brown on 05 March 2014, 18:46:48 UTC, committed by Timothy Brown on 05 March 2014, 18:46:48 UTC
Assumes that the GPU-enabled version of eddy will be named eddy.gpu.
Falls back to use the standard version of eddy if eddy.gpu is either
not found or returns a failure code.
1 parent dcf07aa
Raw File
build.xml
<?xml version="1.0"?>
<project name="Pipelines" basedir=".">
  <property environment="env"/>
  <target 
     name="createHtmlReadMe"
     description="Create the project's ReadMe.html file">
    
    <exec executable="markdown2" output="ReadMe.html" failonerror="true">
      <arg line="ReadMe.md"/>
    </exec>
    
  </target>
</project>
back to top