aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-01-08 07:46:14 +0000
committersaturneric <[email protected]>2024-01-08 07:46:14 +0000
commitfa10ad626b1003fe51f387b15ccf3c6650a933d0 (patch)
tree91defe4ff19853a34a50480d8e61a494095e5dad /README.md
parentdoc: add extra packages to the ubuntu apt-get commands #124 (diff)
downloadGpgFrontend-fa10ad626b1003fe51f387b15ccf3c6650a933d0.tar.gz
GpgFrontend-fa10ad626b1003fe51f387b15ccf3c6650a933d0.zip
doc: change binaries output target from release to artifacts
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 884a35b1..17819702 100644
--- a/README.md
+++ b/README.md
@@ -146,7 +146,7 @@ $ ninja
After compiling, a release directory will be generated, which contains executable files that can be run directly.
```shell
-$ ./release/GpgFrontend.exe
+$ ./artifacts/GpgFrontend.exe
```
### For macOS
@@ -167,7 +167,7 @@ $ cd GpgFrontend
$ mkdir build && cd build
$ cmake -G Ninja -DCMAKE_BUILD_TYPE="Debug" -DOPENSSL_ROOT_DIR=/usr/local/opt/[email protected] ..
$ ninja
-$ ./release/GpgFrontend # run the program
+$ ./artifacts/GpgFrontend # run the program
```
Build the code and make the App Bundle.
@@ -177,7 +177,7 @@ $ cd GpgFrontend
$ mkdir build && cd build
$ cmake -G Ninja -DCMAKE_BUILD_TYPE="Release" -DOPENSSL_ROOT_DIR=/usr/local/opt/[email protected] ..
$ ninja
-$ macdeployqt ./release/GpgFrontend.app
+$ macdeployqt ./artifacts/GpgFrontend.app
```
### For Ubuntu 18.04 And Later
@@ -233,7 +233,7 @@ $ cd GpgFrontend
$ mkdir build && cd build
$ cmake -G Ninja -DCMAKE_BUILD_TYPE="Debug" ..
$ ninja
-$ ./release/GpgFrontend # run the program
+$ ./artifacts/GpgFrontend # run the program
```
Package the AppImage(Should use ubuntu 18.04).
@@ -247,7 +247,7 @@ $ mkdir ./AppImageOut
$ cd ./AppImageOut
$ wget -c -nv https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
$ chmod u+x linuxdeployqt-continuous-x86_64.AppImage
-$ ./linuxdeployqt-continuous-x86_64.AppImage ../release/gpgfrontend/usr/share/applications/*.desktop -appimage
+$ ./linuxdeployqt-continuous-x86_64.AppImage ../artifacts/gpgfrontend/usr/share/applications/*.desktop -appimage
```
## Language Support