0

I want to disable code optimization during build process to make it easy for duggibg. How can I do it?

User394
  • 67
  • 6
  • 1
    Exact duplicate of [How to disable optimization in the qooxdoo build process?](http://stackoverflow.com/questions/1887622/how-to-disable-optimization-in-the-qooxdoo-build-process) – Paul R May 15 '10 at 08:33

1 Answers1

3

Set the OPTIMIZE macro to [] in your config.json's top-level "let" section as:

"let" : {
...
OPTIMIZE : []
}

WSK
  • 5,949
  • 8
  • 49
  • 74