aboutsummaryrefslogtreecommitdiff
path: root/tests/aiet/test_resources/applications/application1/aiet-config.json
blob: 97f04019d3907dba0c2b3ad75467b73b58b240f6 (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
[
  {
    "name": "application_1",
    "description": "This is application 1",
    "supported_systems": [
      {
        "name": "System 1"
      }
    ],
    "build_dir": "build",
    "commands": {
      "clean": [
        "echo 'clean'"
      ],
      "build": [
        "echo 'build'"
      ],
      "run": [
        "echo 'run'"
      ],
      "post_run": [
        "echo 'post_run'"
      ]
    },
    "user_params": {
      "build": [],
      "run": []
    }
  }
]