The standard Boost convention is for them to be called libboost_date_time and libboost_system (with apropriate suffix then depending on type). Did not touch the libboostthread library we build for Windows. Add the ax_boost_thread.m4 file for completeness and possible use. Document where the ax_boost*.m4 files come from. Change-Id: Ib49bee71398d62c9760a1f8fd5c46be9f3400430
29 lines
672 B
Makefile
29 lines
672 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_boost_date_time \
|
|
StaticLibrary_boost_system \
|
|
UnpackedTarball_boost \
|
|
))
|
|
|
|
ifeq ($(OS),WNT)
|
|
$(eval $(call gb_Module_add_targets,boost,\
|
|
StaticLibrary_boostthread \
|
|
))
|
|
endif
|
|
|
|
endif # SYSTEM_BOOST
|
|
|
|
# vim: set noet sw=4 ts=4:
|