mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2026-01-19 04:52:08 +00:00
Add justfile
This commit is contained in:
21
justfile
Normal file
21
justfile
Normal file
@@ -0,0 +1,21 @@
|
||||
set shell := ["bash", "-c"]
|
||||
|
||||
default: list
|
||||
|
||||
list:
|
||||
@just --list --unsorted
|
||||
|
||||
openssl:
|
||||
@(cd test && make test && ./test)
|
||||
@(cd test && make proxy)
|
||||
|
||||
mbedtls:
|
||||
@(cd test && make test_mbedtls && ./test_mbedtls)
|
||||
@(cd test && make proxy_mbedtls)
|
||||
|
||||
fuzz:
|
||||
@(cd test && make fuzz_test)
|
||||
|
||||
build:
|
||||
@(cd test && make test_split)
|
||||
@(cd test && make test_split_mbedtls)
|
||||
Reference in New Issue
Block a user