I figured this issue out myself by looking at the example.json,
application.json, and the base.json files in the SDK. In case anyone else
has the same issue I did, the way I ended up solving this was to define my
own job with the appropriate settings in the JSON file and then to call the
build source job from my job. There may be another way to do this, but my
application is working now. Here's the full config.json file:

{
  "name"    : "client",

  "include" :
  [
    {
      "path" :
"../../../../../../qooxdoo-0.8-sdk/tool/data/config/application.json"
    }
  ],

  "let" :
  {
    "APPLICATION"  : "client",
    "QOOXDOO_PATH" : "../../../../../../qooxdoo-0.8-sdk/framework",
    "QOOXDOO_URI"  : "../${QOOXDOO_PATH}",
    "QXTHEME"      : "qx.theme.Modern",
    "API_EXCLUDE"  : ["qx.legacy.*"],
    "LOCALES"      : [ "en" ],
    "ROOT"         : "."
  },
  
  "jobs" :
  {
    "my-source" :
    {
      "compile-source" :
      {
        "file" : "source/script/client.js",
        "root" : "../../../..",
        "locales" : ["en"],
        "gzip" : false
      },
      
      "run" :
        [
          "source"
        ]
    }
  }
}


I hope someone finds this useful. Figuring out how to define and run my own
jobs made all the difference in understanding the build system for me.

-Dan
-- 
View this message in context: 
http://www.nabble.com/Makefile-Migration-from-0.7-to-0.8-questions-and-suggestions-tp19873177p19890515.html
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to