From 4a48b8112b08172f83efbf3b36776b93ec235440 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 2 Sep 2016 08:08:12 -0400 Subject: [PATCH] Docs: Updated dev build instructions --- DEVELOPER | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/DEVELOPER b/DEVELOPER index 10c24f159..545557b14 100644 --- a/DEVELOPER +++ b/DEVELOPER @@ -8,12 +8,13 @@ How to Build Taskwarrior - python 2.7 or 3 (optional, for running the test suite) 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 $ 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 - # Alternately 'export MAKEFLAGS=-j 8'. + # Alternately 'export MAKEFLAGS=-j 8' Running Test Suite: $ cd tests