Files
loongoffice/boost/Module_boost.mk
Kohei Yoshida 0454b737d3 Make boostthread windows only for now.
Not sure if unix needs it since most folks build with system boost
there.

Change-Id: I49d02a682e6658f6e3c5a6ada480903567d8c436
2012-09-07 09:10:39 -04:00

38 lines
807 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,boost))
ifeq ($(SYSTEM_BOOST),NO)
$(eval $(call gb_Module_add_targets,boost,\
StaticLibrary_boostdatetime \
))
ifeq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,boost,\
StaticLibrary_boostthread \
))
endif
$(eval $(call gb_Module_add_targets,boost,\
UnpackedTarball_boost \
))
ifeq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,boost,\
Package_boostdatetime \
Package_boostthread \
))
endif
endif # SYSTEM_BOOST
# vim: set noet sw=4 ts=4: