It's not in use, but there's code to make Jskad a TM carrier just as
it is a TMW carrier.
This commit is contained in:
parent
1f4343bed0
commit
0f77b32add
1 changed files with 16 additions and 0 deletions
16
build.xml
16
build.xml
|
@ -286,6 +286,11 @@
|
||||||
<antcall target="copy-tmw-fonts-to-bin-dir">
|
<antcall target="copy-tmw-fonts-to-bin-dir">
|
||||||
<param name="my.bin" value="${jskadbin}"/>
|
<param name="my.bin" value="${jskadbin}"/>
|
||||||
</antcall>
|
</antcall>
|
||||||
|
<!-- DLC FIMXE: put these in Jskad
|
||||||
|
<antcall target="copy-tm-fonts-to-bin-dir">
|
||||||
|
<param name="my.bin" value="${jskadbin}"/>
|
||||||
|
</antcall>
|
||||||
|
-->
|
||||||
<antcall target="create-timestamp-source-code"/> <!-- DLC NOW! The -run targets are mucking with this! It isn't fatal, but it should be fixed. -->
|
<antcall target="create-timestamp-source-code"/> <!-- DLC NOW! The -run targets are mucking with this! It isn't fatal, but it should be fixed. -->
|
||||||
<antcall target="our-internal-javac-task">
|
<antcall target="our-internal-javac-task">
|
||||||
<param name="mybin" value="${jskadbin}"/>
|
<param name="mybin" value="${jskadbin}"/>
|
||||||
|
@ -1192,6 +1197,17 @@ public class ThdlVersion {
|
||||||
</copy>
|
</copy>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="copy-tm-fonts-to-bin-dir"
|
||||||
|
description="Copies the TM font files to the current build's bin/ directory.">
|
||||||
|
<available file="Fonts/TibetanMachine"
|
||||||
|
property="found.the.fonts"/>
|
||||||
|
<fail message="Can't find the Fonts module at Jskad/Fonts/TibetanMachine. Did you do 'cvs -f checkout -P Fonts' from inside the Jskad directory?"
|
||||||
|
unless="found.the.fonts"/>
|
||||||
|
<copy todir="${my.bin}/Fonts/TibetanMachine">
|
||||||
|
<fileset dir="Fonts/TibetanMachine"/>
|
||||||
|
</copy>
|
||||||
|
</target>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
||||||
<!-- My TO-DO list: -->
|
<!-- My TO-DO list: -->
|
||||||
|
|
Loading…
Reference in a new issue