https://github.com/shadowsocks-net/qvmeta
Meta repository for building Qv2ray statically.
https://github.com/shadowsocks-net/qvmeta
Last synced: 5 months ago
JSON representation
Meta repository for building Qv2ray statically.
- Host: GitHub
- URL: https://github.com/shadowsocks-net/qvmeta
- Owner: Shadowsocks-NET
- License: gpl-3.0
- Created: 2021-08-22T11:08:57.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-22T17:35:30.000Z (almost 5 years ago)
- Last Synced: 2025-02-07T15:23:33.534Z (over 1 year ago)
- Language: CMake
- Size: 16.6 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QvMeta
Meta repository for building Qv2ray statically.
```bash
git clone https://github.com/Shadowsocks-NET/QvMeta.git
cd QvMeta
git clone --recursive https://github.com/Shadowsocks-NET/Qv2ray.git
git clone --recursive https://github.com/Shadowsocks-NET/QvPlugins.git
cd ..
mkdir QvMeta-build && cd QvMeta-build
cmake ../QvMeta \
-DBUILD_TESTING=OFF \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=installed \
-DQV2RAY_BUILD_INFO="Qv2ray Static Nightly Build for AUR" \
-DQV2RAY_DEFAULT_VASSETS_PATH="/usr/share/v2ray" \
-DQV2RAY_DEFAULT_VCORE_PATH="/usr/bin/v2ray" \
-DQV2RAY_AUTO_UPDATE=OFF \
-DUSE_SYSTEM_LIBUV=OFF \
-DUSE_SYSTEM_UVW=OFF \
-GNinja
cmake --build . --parallel
cmake --install .
```