mirror of
https://github.com/onyx-and-iris/vmrcli.git
synced 2025-04-04 21:33:49 +01:00
Compare commits
No commits in common. "95820c30430b3272430a284ed9ab5be5ee8c90d9" and "29510feb8e46fd1d7056111793dba9ffda9a947e" have entirely different histories.
95820c3043
...
29510feb8e
34
Taskfile.yml
34
Taskfile.yml
@ -3,8 +3,7 @@ version: '3'
|
||||
dotenv: [ '.env' ]
|
||||
|
||||
vars:
|
||||
PROGRAM: vmrcli
|
||||
SHELL: powershell
|
||||
program: vmrcli
|
||||
|
||||
CC: gcc
|
||||
|
||||
@ -31,41 +30,26 @@ tasks:
|
||||
desc: "Link all files in obj/ for Windows"
|
||||
deps: [compile]
|
||||
cmds:
|
||||
- >
|
||||
{{.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"
|
||||
- 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"
|
||||
sources:
|
||||
- '{{.OBJ_DIR}}/**'
|
||||
generates:
|
||||
- '{{.BIN_DIR}}/{{.PROGRAM}}.exe'
|
||||
- '{{.BIN_DIR}}/{{.program}}.exe'
|
||||
|
||||
compile:
|
||||
desc: "Compile all files in src/ and include/ for Windows"
|
||||
cmds:
|
||||
- >
|
||||
{{.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 }"
|
||||
- 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 }"
|
||||
sources:
|
||||
- '{{.SRC_DIR}}/**'
|
||||
- include/**
|
||||
generates:
|
||||
- '{{.OBJ_DIR}}/**'
|
||||
- obj/**
|
||||
|
||||
clean:
|
||||
desc: "Remove all files in obj/ and bin/"
|
||||
cmds:
|
||||
- >
|
||||
{{.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 }"
|
||||
- powershell -Command "Remove-Item -Path '{{.OBJ_DIR}}' -Recurse -Force"
|
||||
- powershell -Command "Remove-Item -Path '{{.BIN_DIR}}' -Recurse -Force"
|
Loading…
x
Reference in New Issue
Block a user