aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/templates/wizards/projects/nim/wizard.json
blob: 1239e444e91dd056887d75e2089d7ab75dd6e267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
    "version": 1,
    "kind": "project",
    "id": "Z.NimProject",
    "category": "I.Projects",
    "trDescription": "Creates a simple Nim application.",
    "trDisplayName": "Nim Application",
    "trDisplayCategory": "Non-Qt Project",
    "featuresRequired": [ "ToolChain.Nim.NimToolChain" ],
    "icon": "icon.png",
    "enabled": "%{JS: value('Plugins').indexOf('Nim') >= 0 }",

    "options":
    [
        { "key": "ProjectFile", "value": "%{NimProjectFile}" },
        { "key": "NimProjectFile", "value": "%{JS: Util.fileName(value('ProjectDirectory') + '/' + value('ProjectName'), 'nimproject')}" },
        { "key": "NimFileName", "value": "main.nim" }
    ],

    "pages":
    [
        {
            "trDisplayName": "Project Location",
            "trShortTitle": "Location",
            "typeId": "Project"
        },
        {
            "trDisplayName": "Kit Selection",
            "trShortTitle": "Kits",
            "typeId": "Kits",
            "enabled": "%{JS: !value('IsSubproject')}",
            "data": { "projectFilePath": "%{ProjectFile}" }
        },
        {
            "trDisplayName": "Project Management",
            "trShortTitle": "Summary",
            "typeId": "Summary"
        }
    ],
    "generators":
    [
        {
            "typeId": "File",
            "data":
            [
                {
                    "source": "file.nimproject",
                    "target": "%{NimProjectFile}",
                    "openAsProject": true
                },
                {
                    "source": "main.nim",
                    "target": "%{NimFileName}",
                    "openInEditor": true
                },
                {
                    "source": "../git.ignore",
                    "target": "%{ProjectDirectory}/.gitignore",
                    "condition": "%{JS: !value('IsSubproject') && value('VersionControl') === 'G.Git'}"
                }
            ]
        }
    ]
}