Docs: Updated dev build instructions

This commit is contained in:
Paul Beckingham 2016-09-02 08:08:12 -04:00
parent c5d32c58f9
commit b7e71a1c3c

View file

@ -8,12 +8,13 @@ How to Build Taskwarrior
- python 2.7 or 3 (optional, for running the test suite) - python 2.7 or 3 (optional, for running the test suite)
Obtain and build code: Obtain and build code:
$ git clone https://git.tasktools.org/scm/tm/task.git task.git $ git clone --recursive https://git.tasktools.org/scm/tm/task.git task.git
$ cd task.git $ cd task.git
$ git checkout 2.6.0 # Latest dev branch $ git checkout 2.6.0 # Latest dev branch
$ cmake -DCMAKE_BUILD_TYPE=debug . # debug or release. Default: neither. $ git submodule update # Update the libhsared.git submodule
$ cmake -DCMAKE_BUILD_TYPE=debug . # debug or release. Default: neither
$ make VERBOSE=1 -j8 # Shows details, builds using 8 jobs $ make VERBOSE=1 -j8 # Shows details, builds using 8 jobs
# Alternately 'export MAKEFLAGS=-j 8'. # Alternately 'export MAKEFLAGS=-j 8'
Running Test Suite: Running Test Suite:
$ cd tests $ cd tests