a7f2239e64
Bundled box2d with the build system of LO as a static library. If --with-system-box2d was specified checks for instance box2d in the system, defines SYSTEM_BOX2D and uses the library from the system. Change-Id: Ifb05912f2acaff273b25abebafc5af1cac3afec4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94103 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
20 lines
531 B
Makefile
20 lines
531 B
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
|
|
$(eval $(call gb_Module_Module,box2d))
|
|
|
|
$(eval $(call gb_Module_add_targets,box2d,\
|
|
UnpackedTarball_box2d \
|
|
))
|
|
|
|
$(eval $(call gb_Module_add_targets,box2d,\
|
|
StaticLibrary_box2d \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|