Menu

building from source

2009-02-16
2013-04-10
  • Daniel McBrearty

    Hi again

    Today I tried to build the project from source. But it seems that you are using a file aceletBuildProperties.xml which is hard coded in the build in many places. where should I put this file and what needs to be in it?

    Daniel

     
    • Wei Jiang

      Wei Jiang - 2009-02-16

      aceletBuildProperties.xml just defines some environment variables. There is a simplified version below. I will remove it later. You need define these environment variable. The related jars are externals. You can find them in the binary release of LimpidLog.

      ---------------------------
      <project name="aceletBuildProperties" basedir=".">
        <property environment="env"/>
        <property name="ACELET_HOME" location="${env.ACELET_HOME}"/>
        <property name="LIMPIDLOG_HOME" location="${env.LIMPIDLOG_HOME}"/>
        <property name="AUDITLOG_HOME" location="${env.AUDITLOG_HOME}"/>
        <property name="O_S" location="${env.O_S}"/>
        <property name="OTHER_JARS" location="${env.OTHER_JARS}"/>

        <property name="limpidlog.version" value="410"/>
      </project>

       

Log in to post a comment.