2012-09-04 06:11:45 -05: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/.
|
|
|
|
#
|
|
|
|
|
2013-01-28 03:13:50 -06:00
|
|
|
$(eval $(call gb_ExternalPackage_ExternalPackage,libmspub,mspub))
|
2012-09-04 06:11:45 -05:00
|
|
|
|
2013-01-28 03:13:50 -06:00
|
|
|
$(eval $(call gb_ExternalPackage_add_unpacked_files,libmspub,inc/external/libmspub,\
|
2012-09-22 09:09:16 -05:00
|
|
|
src/lib/libmspub.h \
|
|
|
|
src/lib/MSPUBDocument.h \
|
|
|
|
src/lib/MSPUBStringVector.h \
|
2012-09-04 06:11:45 -05:00
|
|
|
))
|
|
|
|
|
2013-01-28 03:13:50 -06:00
|
|
|
$(eval $(call gb_ExternalPackage_use_external_project,libmspub,libmspub))
|
|
|
|
|
2013-03-15 18:45:24 -05:00
|
|
|
ifeq ($(COM),MSC)
|
|
|
|
$(eval $(call gb_ExternalPackage_add_file,libmspub,lib/mspub-0.0.lib,src/lib/.libs/libmspub-0.0.lib))
|
2013-01-28 03:13:50 -06:00
|
|
|
else
|
|
|
|
$(eval $(call gb_ExternalPackage_add_file,libmspub,lib/libmspub-0.0.a,src/lib/.libs/libmspub-0.0.a))
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2012-09-04 06:11:45 -05:00
|
|
|
# vim: set noet sw=4 ts=4:
|