home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / exml.lha / exml / examples / tree_test / Ace.ace next >
Text File  |  1999-04-13  |  2KB  |  61 lines

  1. system
  2.     tree_test
  3.  
  4. root
  5.     ROOT_CLASS (root_cluster): "make"
  6.  
  7. default
  8.     assertion (all);
  9.     console_application (yes);
  10.     precompiled ("$EIFFEL4\precomp\spec\$PLATFORM\base");
  11.     
  12. cluster
  13.     
  14.     root_cluster: "$EXML\examples\tree_test";
  15.  
  16.     -- eXML
  17.     eXML: "$EXML\main";
  18.     eXML_tree_parser: "$EXML\main\tree_parser";
  19.     eXML_ise: "$EXML\compiler_specific\ise";
  20.  
  21.         -- EiffelBase
  22.     base:                        "$EIFFEL4\library\base";
  23.     structures(base):            "$\structures";
  24.     
  25.     kernel(base):                "$\kernel";
  26.     support(base):                "$\support";
  27.     access(structures):            "$\access";
  28.     cursors(structures):        "$\cursors";
  29.     cursor_tree(structures):    "$\cursor_tree";
  30.     dispenser(structures):        "$\dispenser";
  31.     iteration(structures):        "$\iteration";
  32.     list(structures):            "$\list";
  33.     set(structures):            "$\set";
  34.     sort(structures):            "$\sort";
  35.     storage(structures):        "$\storage";
  36.     table(structures):            "$\table";
  37.     traversing(structures):        "$\traversing";
  38.     tree(structures):            "$\tree";
  39.  
  40.         -- Gobo Eiffel Kernel Library
  41.     kl_kernel:            "$GOBO\library\kernel";
  42.     kl_kernel_spec:        "$GOBO\library\kernel\spec\ise";
  43.  
  44.         -- Gobo Eiffel Structure Library
  45.     ds_container:        "$GOBO\library\structure\container";
  46.     ds_cursor:            "$GOBO\library\structure\cursor";
  47.     ds_list:            "$GOBO\library\structure\list";
  48.     ds_search:            "$GOBO\library\structure\search";
  49.     ds_sort:            "$GOBO\library\structure\sort";
  50.     ds_stack:            "$GOBO\library\structure\stack";
  51.     ds_support:            "$GOBO\library\structure\support";
  52.     ds_table:            "$GOBO\library\structure\table";
  53.  
  54. external
  55.     include_path:        "$EXML\expat\xmlparse",
  56.                             "$EXML\compiler_specific\ise\clib";
  57.     object:                "$EXML\compiler_specific\ise\clib\msc\exml.lib",
  58.                             "$EXML\expat\lib\xmlparse.lib";
  59.  
  60. end
  61.