Salome HOME
add the template command
[tools/sat.git] / data / templates / Cpp_Template / template.info
1 #!/usr/bin/env python
2 #-*- coding:utf-8 -*-
3
4 # description of the template to be displayed with option --info
5 info = """
6 Author: CEA
7 Description: This template can be used to create c++ component.
8 Remark:
9  * The name of the module must be suffixed with 'CPP'.
10  * This module will compiled with med 3.
11  * Once the module is compiled use the generate command to create the SALOME module.
12  * The generate command requires a version of YACSGEN greater or equal to 6.5.0.
13 """
14
15 # code to subsitute with component name
16 file_subst = "Cpp_Template_"
17
18 # delimiter used in the template (default is ':sat:')
19 #delimiter = ":sat:"
20
21 # filter of files to ignore for substitution
22 # if not defined all files will be parsed
23 ignore_filters = '*.png'
24
25 # list of parameters
26 # a string = parameter name
27 # a tuple = (parameter name, default value, prompt, validation method)
28 parameters = [
29     (file_subst, "%(NAME)s"),
30     ("get_method", "archive", "get method for prepare", lambda l: l in ['cvs', 'git', 'archive'])
31     ]
32
33 # configuration to use this component with sat
34 pyconf = """
35     default :
36     {
37         name : "%(NAME)sCPP"
38         component_name : "%(NAME)s"
39         get_sources : '%(get_method)s'
40         build_sources : 'autotools'
41         git_info:
42         {
43             repo : 'to be filled'
44             tag : 'to be filled'
45         }
46         archive_info:
47         {
48             archive_name : '%(target)s.tar.gz'
49         }
50         nb_proc : 1
51         source_dir : $TOOLS.common.source_root + '/' + $name
52         build_dir : $TOOLS.common.build_root + '/' + $name
53         depend : [ 
54                    'hdf5',
55                    'med',
56                    'qt',
57                    'Python',
58                    'omniORB',
59                    'omniORBpy',
60                    'boost' ,
61                    'KERNEL',
62                    'GUI',
63                    'MED'
64                  ]
65         opt_depend : []
66                 properties :
67                 {
68                         is_cpp : "yes"
69                         environment : "salome"
70                         has_salome_gui : "yes"
71                         logo : $source_dir + "/resources/%(NAME)s.png"
72                 }
73     }
74 """