2012-08-26 20:35:31 +02:00
|
|
|
# -*- 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))
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_add_targets,boost,\
|
2013-05-24 14:46:28 +02:00
|
|
|
StaticLibrary_boostdatetime \
|
2014-01-08 13:17:28 +01:00
|
|
|
StaticLibrary_boost_system \
|
|
|
|
StaticLibrary_boost_iostreams \
|
2012-08-26 20:35:31 +02:00
|
|
|
UnpackedTarball_boost \
|
|
|
|
))
|
|
|
|
|
2012-09-06 19:08:33 +02:00
|
|
|
ifeq ($(OS),WNT)
|
|
|
|
$(eval $(call gb_Module_add_targets,boost,\
|
2012-09-08 13:02:32 +02:00
|
|
|
StaticLibrary_boostthread \
|
2012-09-06 19:08:33 +02:00
|
|
|
))
|
|
|
|
endif
|
|
|
|
|
2012-08-26 20:35:31 +02:00
|
|
|
# vim: set noet sw=4 ts=4:
|