make -j$(nproc)
[ci skip]
This commit is contained in:
@@ -77,7 +77,7 @@ install:
|
|||||||
|
|
||||||
script:
|
script:
|
||||||
- qmake PREFIX=/usr
|
- qmake PREFIX=/usr
|
||||||
- make -j4
|
- make -j$(nproc)
|
||||||
- make INSTALL_ROOT=appdir install ; find appdir/
|
- make INSTALL_ROOT=appdir install ; find appdir/
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
@@ -105,6 +105,7 @@ __CMake__ wants `DESTDIR` instead:
|
|||||||
|
|
||||||
```
|
```
|
||||||
- cmake . -DCMAKE_INSTALL_PREFIX=/usr
|
- cmake . -DCMAKE_INSTALL_PREFIX=/usr
|
||||||
|
- make -j$(nproc)
|
||||||
- make DESTDIR=appdir install ; find appdir/
|
- make DESTDIR=appdir install ; find appdir/
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -112,7 +113,7 @@ __autotools__ (the dinosaur that spends precious minutes "checking...") wants `D
|
|||||||
|
|
||||||
```
|
```
|
||||||
- ./configure --prefix=/usr
|
- ./configure --prefix=/usr
|
||||||
- make -j4
|
- make -j$(nproc)
|
||||||
- make install DESTDIR=$(readlink -f appdir) ; find appdir/
|
- make install DESTDIR=$(readlink -f appdir) ; find appdir/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user