2012-07-29 11:49: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_Executable_Executable,climaker))
|
|
|
|
|
2013-09-21 01:35:41 +02:00
|
|
|
$(eval $(call gb_Executable_use_package,climaker,\
|
|
|
|
cli_basetypes_copy \
|
|
|
|
))
|
|
|
|
|
2012-07-29 11:49:31 +02:00
|
|
|
$(eval $(call gb_Executable_add_cxxflags,climaker,\
|
2013-10-28 11:01:50 +01:00
|
|
|
-AI $(INSTDIR)/$(LIBO_URE_LIB_FOLDER) \
|
2012-07-29 11:49:31 +02:00
|
|
|
-clr \
|
|
|
|
-LN \
|
|
|
|
-wd4339 \
|
|
|
|
-wd4715 \
|
|
|
|
))
|
|
|
|
|
2012-10-21 19:08:03 -04:00
|
|
|
$(eval $(call gb_Executable_add_ldflags,climaker,\
|
|
|
|
-ignore:4248 \
|
|
|
|
))
|
|
|
|
|
2012-07-29 11:49:31 +02:00
|
|
|
$(eval $(call gb_Executable_use_internal_bootstrap_api,climaker,\
|
|
|
|
udkapi \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_use_libraries,climaker,\
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
2012-09-28 15:31:46 +02:00
|
|
|
sal \
|
2013-04-29 13:35:53 +02:00
|
|
|
salhelper \
|
|
|
|
unoidl \
|
2012-09-28 15:31:46 +02:00
|
|
|
$(gb_UWINAPI) \
|
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_use_system_win32_libs,climaker,\
|
2012-07-29 11:49:31 +02:00
|
|
|
mscoree \
|
2013-04-18 20:27:05 +02:00
|
|
|
msvcmrt \
|
2012-07-29 11:49:31 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Executable_add_exception_objects,climaker,\
|
|
|
|
cli_ure/source/climaker/climaker_app \
|
|
|
|
cli_ure/source/climaker/climaker_emit \
|
|
|
|
))
|
|
|
|
|
2013-08-22 16:25:27 +02:00
|
|
|
$(call gb_Executable_get_headers_target,climaker) : \
|
|
|
|
$(call gb_CliLibrary_get_target,cli_basetypes)
|
|
|
|
|
2012-07-29 11:49:31 +02:00
|
|
|
# vim: set noet sw=4 ts=4:
|