At least during development and debugging I want the generate script to simply 
pack all sources into one big file, and nothing more, maybe fix some formatting 
or so, bud definitely not mangle and scramble all variable names, remove all 
whitespace and so on.

I first tried this in the application's config.json:

"jobs" :
{
  "build-script" :
  {
    "fix-files" : {},
    "pretty-print" : 
    {
      "general" :
      {
        "indent-string"        : "\t"
      },
      "comments" :
      {
        "trailing" :
        {
          "keep-column"        : false,
          "comment-cols"       : [50, 70, 90],
          "padding"            : " "
        }
      },
      "blocks" :
      {
        "align-with-curlies"   : false,
        "open-curly" :
        {
          "newline-before"     : "a",
          "indent-before"      : false
        }
      }
    },
      
    "compile-options" : 
    {
      "code" :
      {
        "format" : true,
        "optimize" : []
      },
      "paths" :
      {
        "gzip" : false
      }
    }
  }
}

Didn't work. So I changed the build job in tool\data\config.json, without 
removing the changes I already did to the application's config.json. Didn't 
help either.

I looked into tool\data\application.json, and no build job or any related job 
seems to be configured there, so I didn't change anything.

Qooxdoo version is 1.0.1, I downloaded it quite recently.

What do I do wrong?

br,

flj



------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to