Changeset 1535


Ignore:
Timestamp:
11/02/20 15:29:31 (3 years ago)
Author:
davidb
Message:

Adding in UTF-8 encoding to javac targets to help with compilation, now that \uXXXX Java string initialization is being used

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r1265 r1535  
    8686       
    8787        <target depends="init" name="build">
    88                 <javac source="${javac.source}" target="${javac.target}" debug="true"
     88                <javac encoding="UTF-8"
     89                       source="${javac.source}" target="${javac.target}" debug="true"
    8990                       destdir="${build.dir.exp}" includeantruntime="false">                       
    9091                       
     
    123124
    124125        <target depends="init" name="build-nojfx">
    125                 <javac source="${javac.source}" target="${javac.target}" debug="false"
     126                <javac encoding="UTF-8"
     127                       source="${javac.source}" target="${javac.target}" debug="false"
    126128                       destdir="${build.dir.exp}" includeantruntime="false">                       
    127129                       
Note: See TracChangeset for help on using the changeset viewer.