source: config.json @ 130:9947fdb8e675

Last change on this file since 130:9947fdb8e675 was 130:9947fdb8e675, checked in by fnevgeny, 15 years ago

Switched to qx-0.8.2.

File size: 2.1 KB
Line 
1{
2  "name"    : "pf",
3
4  "include" :
5  [
6    {
7      "path" : "../qooxdoo-0.8.2-sdk/tool/data/config/application.json",
8      "as"   : "appconf"
9    }
10  ],
11
12  "let" :
13  {
14    "APPLICATION"  : "pf",
15    "QOOXDOO_PATH" : "../qooxdoo-0.8.2-sdk",
16    "QOOXDOO_URI"  : "../${QOOXDOO_PATH}",
17    "QXTHEME"      : "qx.theme.Modern",
18    "LOCALES"      : [ "en" ],
19    "ROOT"         : ".",
20    "APPLICATION_FILES" : "index.html pf.html sprintf.js wz_jsgraphics.js
21                           entities.js",
22    "APPLICATION_RESOURCE_FILTER" : true,
23    "APPLICATION_COMPLETE_SOURCE" : false
24  },
25
26  "jobs" :
27  {
28    "api" :
29    {
30      "extend" : ["appconf::api"]
31    },
32
33    "build" :
34    {
35      "extend" : ["appconf::build"],
36
37      "settings" :
38      {
39        "qx.legacy.theme" : "qx.legacy.theme.ClassicRoyale"
40      },
41     
42      "require" :
43      {
44        "pf.Application" : [ "qx.legacy.theme.ClassicRoyale" ]
45      },
46     
47      "copy-files" :
48      {
49        "target" : "${BUILD_PATH}",
50        "files"  : ["index.html", "pf.html", "wz_jsgraphics.js", "entities.js"]
51      },
52     
53      "copy-resources" :
54      {
55        "target"          : "${BUILD_PATH}",
56        "resource-filter" : true
57      } 
58    },
59
60    "clean" :
61    {
62      "extend" : ["appconf::clean"]
63    },
64
65    "distclean" :
66    {
67      "extend" : ["appconf::distclean"]
68    },
69
70    "fix" :
71    {
72      "extend" : ["appconf::fix"]
73    },
74
75    "lint" :
76    {
77      "extend" : ["appconf::lint"]
78    },
79
80    "migration" :
81    {
82      "extend" : ["appconf::migration"]
83    },
84
85    "pretty" :
86    {
87      "extend" : ["appconf::pretty"]
88    },
89
90    "publish" :
91    {
92      "extend" : ["appconf::publish"]
93    },
94
95    "source" :
96    {
97      "extend" : ["appconf::source"],
98
99      "settings" :
100      {
101        "qx.legacy.theme" : "qx.legacy.theme.ClassicRoyale"
102      },
103      "require" :
104      {
105        "pf.Application" : [ "qx.legacy.theme.ClassicRoyale" ]
106      }
107    },
108
109    "test" :
110    {
111      "extend" : ["appconf::test"]
112    },
113
114    "test-source" :
115    {
116      "extend" : ["appconf::test-source"]
117    },
118
119    "translate" :
120    {
121      "extend" : ["appconf::translate"]
122    }
123
124  }
125}
Note: See TracBrowser for help on using the repository browser.