mirror of
https://github.com/onyx-and-iris/vmrcli.git
synced 2025-04-03 04:43:48 +01:00
Compare commits
2 Commits
29510feb8e
...
95820c3043
Author | SHA1 | Date | |
---|---|---|---|
95820c3043 | |||
87c2192403 |
34
Taskfile.yml
34
Taskfile.yml
@ -3,7 +3,8 @@ version: '3'
|
|||||||
dotenv: [ '.env' ]
|
dotenv: [ '.env' ]
|
||||||
|
|
||||||
vars:
|
vars:
|
||||||
program: vmrcli
|
PROGRAM: vmrcli
|
||||||
|
SHELL: powershell
|
||||||
|
|
||||||
CC: gcc
|
CC: gcc
|
||||||
|
|
||||||
@ -30,26 +31,41 @@ tasks:
|
|||||||
desc: "Link all files in obj/ for Windows"
|
desc: "Link all files in obj/ for Windows"
|
||||||
deps: [compile]
|
deps: [compile]
|
||||||
cmds:
|
cmds:
|
||||||
- powershell -Command "if (!(Test-Path -Path '{{.BIN_DIR}}')) { New-Item -ItemType Directory -Path '{{.BIN_DIR}}' }"
|
- >
|
||||||
- powershell -Command "{{.CC}} {{.LDFLAGS}} {{.OBJ_DIR}}/*.o {{.LDLIBS}} -o {{.BIN_DIR}}/{{.program}}.exe"
|
{{.SHELL}} -Command
|
||||||
|
"if (!(Test-Path -Path '{{.BIN_DIR}}')) {
|
||||||
|
New-Item -ItemType Directory -Path '{{.BIN_DIR}}'
|
||||||
|
}"
|
||||||
|
- >
|
||||||
|
{{.SHELL}} -Command "{{.CC}} {{.LDFLAGS}} {{.OBJ_DIR}}/*.o {{.LDLIBS}} -o {{.BIN_DIR}}/{{.PROGRAM}}.exe"
|
||||||
sources:
|
sources:
|
||||||
- '{{.OBJ_DIR}}/**'
|
- '{{.OBJ_DIR}}/**'
|
||||||
generates:
|
generates:
|
||||||
- '{{.BIN_DIR}}/{{.program}}.exe'
|
- '{{.BIN_DIR}}/{{.PROGRAM}}.exe'
|
||||||
|
|
||||||
compile:
|
compile:
|
||||||
desc: "Compile all files in src/ and include/ for Windows"
|
desc: "Compile all files in src/ and include/ for Windows"
|
||||||
cmds:
|
cmds:
|
||||||
- powershell -Command "if (!(Test-Path -Path '{{.OBJ_DIR}}')) { New-Item -ItemType Directory -Path '{{.OBJ_DIR}}' }"
|
- >
|
||||||
- powershell -Command "Get-ChildItem -Path 'src' -Filter '*.c' | ForEach-Object { \$_.Name -replace '\.c$', '' } | ForEach-Object { {{.CC}} {{.CPPFLAGS}} {{.CFLAGS}} -c {{.SRC_DIR}}/\$_.c -Iinclude -o {{.OBJ_DIR}}/\$_.o }"
|
{{.SHELL}} -Command
|
||||||
|
"if (!(Test-Path -Path '{{.OBJ_DIR}}')) {
|
||||||
|
New-Item -ItemType Directory -Path '{{.OBJ_DIR}}'
|
||||||
|
}"
|
||||||
|
- >
|
||||||
|
{{.SHELL}} -Command
|
||||||
|
"Get-ChildItem -Path '{{.SRC_DIR}}' -Filter '*.c' |
|
||||||
|
ForEach-Object { \$_.Name -replace '\.c$', '' } |
|
||||||
|
ForEach-Object { {{.CC}} {{.CPPFLAGS}} {{.CFLAGS}} -c {{.SRC_DIR}}/\$_.c -Iinclude -o {{.OBJ_DIR}}/\$_.o }"
|
||||||
sources:
|
sources:
|
||||||
- '{{.SRC_DIR}}/**'
|
- '{{.SRC_DIR}}/**'
|
||||||
- include/**
|
- include/**
|
||||||
generates:
|
generates:
|
||||||
- obj/**
|
- '{{.OBJ_DIR}}/**'
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
desc: "Remove all files in obj/ and bin/"
|
desc: "Remove all files in obj/ and bin/"
|
||||||
cmds:
|
cmds:
|
||||||
- powershell -Command "Remove-Item -Path '{{.OBJ_DIR}}' -Recurse -Force"
|
- >
|
||||||
- powershell -Command "Remove-Item -Path '{{.BIN_DIR}}' -Recurse -Force"
|
{{.SHELL}} -Command "if (Test-Path -Path '{{.OBJ_DIR}}') { Remove-Item -Path '{{.OBJ_DIR}}' -Recurse -Force }"
|
||||||
|
- >
|
||||||
|
{{.SHELL}} -Command "if (Test-Path -Path '{{.BIN_DIR}}') { Remove-Item -Path '{{.BIN_DIR}}' -Recurse -Force }"
|
Loading…
x
Reference in New Issue
Block a user