|
Revision 1373, 403 bytes
(checked in by eitan, 4 years ago)
|
applying patch from andy kriger having to do with adding a build target that embeds antlr301 into css4swing.jar (using jarjar) that is useful in situations where multiple versions of antlr (eg 301 and 276) are present on the classpath and potentially collide
|
| Line | |
|---|
| 1 |
# |
|---|
| 2 |
package=com/u2d/cssparser |
|---|
| 3 |
# |
|---|
| 4 |
src.dir=src |
|---|
| 5 |
tests.dir=test |
|---|
| 6 |
# |
|---|
| 7 |
lib.dir=lib |
|---|
| 8 |
lib.src.dir=${lib.dir}/src |
|---|
| 9 |
lib.runtime.dir=${lib.dir}/runtime |
|---|
| 10 |
lib.test.dir=${lib.dir}/tests |
|---|
| 11 |
# |
|---|
| 12 |
build.dir=build |
|---|
| 13 |
gen.dir=${build.dir}/java |
|---|
| 14 |
build.classes.dir=${build.dir}/classes |
|---|
| 15 |
dist.dir=dist |
|---|
| 16 |
# |
|---|
| 17 |
jar.name=${ant.project.name}.jar |
|---|
| 18 |
# |
|---|
| 19 |
lib.jarjar=${lib.src.dir}/jarjar-1.0rc7.jar |
|---|
| 20 |
lib.antlr=${lib.src.dir}/antlr-3.0.1.jar |
|---|
| 21 |
jarjar.name=cssjarjar |
|---|