* build.xml: read user defined property file from $HOME.

git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@3841 1b9489fe-b721-0410-924e-b54b9192deb8
This commit is contained in:
Minero Aoki 2008-01-14 16:05:00 +00:00
parent aaa75d0e75
commit efa91bbf9f
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Tue Jan 15 01:04:55 2008 Minero Aoki <aamine@loveruby.net>
* build.xml: read user defined property file from $HOME.
Tue Jan 15 00:51:41 2008 Minero Aoki <aamine@loveruby.net>
* build.xml: now default task is "jar" instead of "compile".

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="CflatCompiler" default="jar" basedir=".">
<target name="init">
<property file="${user.home}/.ant-global.properties" />
<property file="build.properties" />
</target>