mirror of
https://github.com/safing/portmaster
synced 2025-04-09 21:49:11 +00:00
18 lines
350 B
TOML
18 lines
350 B
TOML
[env.development]
|
|
TARGET_PATH = "target/x86_64-pc-windows-msvc/debug"
|
|
|
|
[env.production]
|
|
TARGET_PATH = "target/x86_64-pc-windows-msvc/release"
|
|
BUILD_FLAGS = "--release"
|
|
|
|
[tasks.build-driver]
|
|
script = [
|
|
"cargo build $BUILD_FLAGS",
|
|
]
|
|
|
|
[tasks.upload]
|
|
dependencies = ["build-driver"]
|
|
script = [
|
|
"scp $TARGET_PATH/driver.lib windows:'C:/Dev/'",
|
|
]
|
|
|