...
If you have some special characters in your code (like '€' for exemple), then you will need to specify which encoding you want when you build your application. To do that, you have to modify your "build.xml" file by adding the property "encoding="utf-8" into your <wocompile> statement.
Code Block | ||
---|---|---|
| ||
<wocompile srcdir="Sources" destdir="bin" encoding="utf-8">
|