2 Commits
dev ... v0.20

Author SHA1 Message Date
Fancy Zhang
86fe42eccb version 0.20 2022-12-30 22:04:55 +08:00
Fancy Zhang
f88748bd28 small things 2022-12-30 21:40:53 +08:00
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
build*
.cache
.directory
.clangd
v2ray_config/proxy

View File

@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
project(cgproxy VERSION 1.00)
project(cgproxy VERSION 0.20)
include(GNUInstallDirs)

View File

@@ -65,7 +65,7 @@ Main feature:
### build
- before build, install depencies: clang(if to build bpf obj from scratch), nlohmann-json, libbpf
- before build, install depencies: clang, nlohmann-json, libbpf, bpf(bpftool)
- then cmake standard build
```bash