-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHyperMake
More file actions
61 lines (53 loc) · 1.29 KB
/
HyperMake
File metadata and controls
61 lines (53 loc) · 1.29 KB
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
---
format: hypermake.v0
name: thirdparty
description: Third-party dependencies
targets:
toolchain:
description: stub for custom toolchain
exec:
description: environment for hmake -x
after:
- toolchain
build-deps:
description: build components
after:
- 'build-dep-*'
build-prebuilt-prepare:
description: prepare for building image with prebuilt binaries
watches:
- docker/Dockerfile
- docker/kit
cmds:
- 'mkdir -p out'
- 'rm -fr out/kit'
- 'cp -f docker/Dockerfile out/'
- 'cp -rf docker/kit out/'
build-prebuilt:
description: build docker image with prebuilt images
after:
- build-prebuilt-prepare
- 'build-dep-gflags-*'
- 'build-dep-glog-*'
- 'build-dep-googletest-*'
- 'build-dep-boost-*'
- 'build-dep-cpp-netlib-*'
- 'build-dep-ffmpeg-*'
- 'build-dep-opencv-*'
- 'build-dep-sphinx-*'
- 'build-dep-flite-*'
- 'build-dep-ncsdk-*'
- 'build-dep-nlohmann-json'
- 'build-dep-cxxopts'
build: out
image: 'robotalks/toolchain-prebuilt:stretch-0'
cache: false
includes:
- '**/**/*.hmake'
settings:
default-targets:
- build-prebuilt
exec-target: exec
exec-shell: /bin/bash
docker:
image: robotalks/toolchain:stretch-0