2011-12-19 13:58:22 -06:00
|
|
|
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
|
2011-12-17 12:46:38 -06:00
|
|
|
#
|
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-12-17 12:46:38 -06:00
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# 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/.
|
2011-12-17 12:46:38 -06:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_Executable,nsplugin))
|
|
|
|
|
2013-01-26 14:19:13 -06:00
|
|
|
$(eval $(call gb_Executable_use_external,nsplugin,boost_headers))
|
|
|
|
|
2012-07-02 08:55:53 -05:00
|
|
|
$(eval $(call gb_Executable_use_sdk_api,nsplugin))
|
2011-12-17 12:46:38 -06:00
|
|
|
|
|
|
|
$(eval $(call gb_Executable_add_exception_objects,nsplugin,\
|
|
|
|
extensions/source/nsplugin/source/so_closelistener \
|
|
|
|
extensions/source/nsplugin/source/so_instance \
|
|
|
|
extensions/source/nsplugin/source/so_main \
|
|
|
|
))
|
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Executable_use_static_libraries,nsplugin,\
|
2012-03-12 11:18:26 -05:00
|
|
|
npsoenv \
|
|
|
|
))
|
|
|
|
|
2012-09-28 05:25:50 -05:00
|
|
|
$(eval $(call gb_Executable_add_libs,nsplugin,\
|
2012-01-06 16:34:35 -06:00
|
|
|
$(if $(filter $(OS),LINUX), \
|
2012-09-28 05:25:50 -05:00
|
|
|
-ldl \
|
2011-12-19 13:58:22 -06:00
|
|
|
) \
|
|
|
|
$(if $(filter $(OS),SOLARIS), \
|
2012-09-28 05:25:50 -05:00
|
|
|
-lnsl \
|
|
|
|
-lsocket \
|
2011-12-19 13:58:22 -06:00
|
|
|
) \
|
2011-12-17 12:46:38 -06:00
|
|
|
))
|
|
|
|
|
2012-09-28 05:25:50 -05:00
|
|
|
$(eval $(call gb_Executable_use_libraries,nsplugin,\
|
2012-09-29 10:20:22 -05:00
|
|
|
comphelper \
|
2012-09-28 05:25:50 -05:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
))
|
|
|
|
|
2012-12-11 17:07:09 -06:00
|
|
|
ifeq ($(OS),WNT)
|
2011-12-17 12:46:38 -06:00
|
|
|
$(eval $(call gb_Executable_add_exception_objects,nsplugin,\
|
|
|
|
extensions/source/nsplugin/source/nsp_windows \
|
|
|
|
))
|
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Executable_use_static_libraries,nsplugin,\
|
2012-01-10 11:28:11 -06:00
|
|
|
ooopathutils \
|
|
|
|
))
|
|
|
|
|
2012-09-28 08:31:46 -05:00
|
|
|
$(eval $(call gb_Executable_use_system_win32_libs,nsplugin,\
|
2011-12-17 12:46:38 -06:00
|
|
|
advapi32 \
|
2012-09-28 08:31:46 -05:00
|
|
|
comdlg32 \
|
|
|
|
gdi32 \
|
|
|
|
kernel32 \
|
|
|
|
ole32 \
|
2011-12-17 12:46:38 -06:00
|
|
|
oleaut32 \
|
2012-09-28 08:31:46 -05:00
|
|
|
shell32 \
|
|
|
|
user32 \
|
2011-12-17 12:46:38 -06:00
|
|
|
uuid \
|
2012-09-28 08:31:46 -05:00
|
|
|
winspool \
|
|
|
|
ws2_32 \
|
2011-12-17 12:46:38 -06:00
|
|
|
))
|
|
|
|
endif # WNT
|
|
|
|
|
2013-01-26 15:19:07 -06:00
|
|
|
# vim:set noet sw=4 ts=4:
|