Skip to content
Crom (Thibaut CHARLES) edited this page Feb 25, 2014 · 1 revision

Make encapsulates the dub calls

Native targets

Check dub dependencies (for first time build)

#!bash
make deps

Debug

#!bash
make

Unittest

#!bash
make unittest

Cross targets

Cross GDC must be installed and in the path. See GDC for cross builds ARM

#!bash
export PATH=$PATH:/opt/arm-unknown-linux-gnueabi/bin/

Debug

#!bash
make cross

Unittest

#!bash
make crossunittest

Release

#!bash
make crossrelease

Documentation

You need ddox installed. See Documentation generation

#!bash
make crossrelease
Clone this wiki locally