Use jobs for make command

Building can be quite a slow process, so add jobs to make command.
This commit is contained in:
Campbell Barton 2017-06-10 15:17:08 +10:00 committed by GitHub
parent 5b7b9fb309
commit cec9b90a59

View file

@ -111,18 +111,18 @@ Features from the modified libtiff and needed currently, so this isn't a simple
```
$ cd opentoonz/thirdparty/tiff-4.0.3
$ ./configure --with-pic --disable-jbig
$ make
$ cd -
$ make -j$(nproc)
$ cd ../../
```
### Building OpenToonz
```
$ cd ../../toonz
$ cd toonz
$ mkdir build
$ cd build
$ cmake ../sources
$ make
$ make -j$(nproc)
```
The build takes a lot of time, be patient.