blob: a1e5b6dd91a611bc0cff14d3203c662c97705abf (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# https://taskfile.dev
#Called by the vnbuild system to produce builds for my website
#https://www.vaughnnugent.com/resources/software
#This taskfile performs the build operations for a module, it handles
#git code updates, msbuild on solutions, and sleet NuGet feed pushes.
#this file must be in the same directory as the solution file
#NOTES: Since CI project is pulled from the module root, MODULE_DIR is used instead of PROJECT_DIR
version: '3'
tasks:
default:
desc: "Build the library for your system"
cmds:
- cmake -S . -B./build/ -DCMAKE_BUILD_TYPE=Release
- cmake --build build/ --config Release
- cmd: echo "Build complete your files can be found in the build/ directory"
silent: true
#called by build pipeline to build module
build:
cmds:
- echo "building project {{.PROJECT_NAME}}"
- cmd: powershell -Command "mkdir bin/ -Force"
ignore_error: true
#build windows x64
- task: build_win_x64
#pack source
- task: pack_source
clean:
desc: "Cleans the artifact directory"
cmds:
- cmd: powershell -Command "rm -r bin/ -Force"
ignore_error:
build_win_x64:
internal: true
vars:
TARGET_DLL: '{{.PROJECT_DIR}}/{{.BINARY_DIR}}/{{.PROJECT_NAME}}-win64.tgz'
DLL_FILES: '{{.PROJECT_NAME}}.dll {{.PROJECT_NAME}}.lib license.txt'
TARGET_STATIC: '{{.PROJECT_DIR}}/{{.BINARY_DIR}}/{{.PROJECT_NAME}}-win64-static.tgz'
STATIC_FILES: '{{.PROJECT_NAME}}_static.lib license.txt'
BUILD_DIR: 'out/build/win-x64'
cmds:
#invoke cmake build
- cmake -S . -B {{.BUILD_DIR}} -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release
- cmake --build {{.BUILD_DIR}} --config Release
#copy license to build dir
- powershell -Command "cp license {{.BUILD_DIR}}/Release/license.txt"
#tar up the binaries
- cd {{.BUILD_DIR}}/Release && tar -czf "{{.TARGET_DLL}}" {{.DLL_FILES}}
#tar up static libs
- cd {{.BUILD_DIR}}/Release && tar -czf "{{.TARGET_STATIC}}" {{.STATIC_FILES}}
pack_source:
internal: true
desc: "Packs up the project source code and creates a tarball in the builds binary directory"
vars:
TARGET_SOURCE: '{{.PROJECT_DIR}}/{{.BINARY_DIR}}/{{.PROJECT_NAME}}-source.tgz'
SOURCE_FILES: 'CMakeLists.txt src include license tests Taskfile.yaml'
cmds:
#tar up the source
- tar -czf "{{.TARGET_SOURCE}}" {{.SOURCE_FILES}}
|