Add new uses ninja[:verbose]

This allows to use the ninja build system.
USES= cmake ninja
Will make cmake generate ninja files and use ninja.
This commit is contained in:
Baptiste Daroussin 2014-01-07 08:18:58 +00:00
parent f85a8bf444
commit 91e0982833
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=338983

30
Mk/Uses/ninja.mk Normal file
View File

@ -0,0 +1,30 @@
# $FreeBSD$
#
# Provide support to use ninja
#
# MAINTAINER: portmgr@FreeBSD.org
#
# Feature: ninja
# Usage: USES=ninja[:verbose]
.if !defined(_INCLUDE_USES_NINJA_MK)
_INCLUDE_USES_NINJA_MK= yes
.if defined(ninja_ARGS)
.if ${ninja_ARGS} == verbose
MAKE_ARGS+= -v
.else
IGNORE= Incorrect aruments for 'USES+= ninja:${ninja_ARGS}' valid argument is 'verbose'
.endif
.endif
BUILD_DEPENDS= ninja:${PORTSDIR}/devel/ninja
CMAKE_ARGS+= -GNinja
MAKEFILE=
MAKE_CMD= ninja
MAKE_FLAGS=
MAKE_ENV= ${DESTDIRNAME}=${STAGEDIR}
_DESTDIR_VIA_ENV= yes
.endif