aboutsummaryrefslogtreecommitdiff
path: root/tests/aiet/test_resources/applications/application4/aiet-config.json
blob: 34dc780e9d4f7f7982be5f65d2f16b14125a5f82 (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
[
  {
    "name": "application_4",
    "description": "This is application 4",
    "build_dir": "build",
    "supported_systems": [
      {
        "name": "System 4"
      }
    ],
    "commands": {
      "build": [
        "cp ../hello_app.txt . # {user_params:0}"
      ],
      "run": [
        "{application.build_dir}/hello_app.txt"
      ]
    },
    "user_params": {
      "build": [
        {
          "name": "--app",
          "description": "Sample command param",
          "values": [
            "application1",
            "application2",
            "application3"
          ],
          "default_value": "application1"
        }
      ],
      "run": []
    }
  }
]