summaryrefslogtreecommitdiff
path: root/onlineupdate/Executable_update_service.mk
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-08-19 14:36:02 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-05-19 03:43:15 +0200
commit4a2b087645cc1363b9d8fc9ca5fa6257d6da3263 (patch)
tree36f86def8ee563030758cfb8eda7a0952d14a8fa /onlineupdate/Executable_update_service.mk
parented267696b5b0922eff08823c300f94ff060aab50 (diff)
start work on the updater service
Change-Id: Ic0b98c859cf2115195a75e9521c35ef32bd8b833
Diffstat (limited to 'onlineupdate/Executable_update_service.mk')
-rw-r--r--onlineupdate/Executable_update_service.mk32
1 files changed, 32 insertions, 0 deletions
diff --git a/onlineupdate/Executable_update_service.mk b/onlineupdate/Executable_update_service.mk
new file mode 100644
index 000000000000..eda3e5931868
--- /dev/null
+++ b/onlineupdate/Executable_update_service.mk
@@ -0,0 +1,32 @@
+# -*- 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,update_service))
+
+$(eval $(call gb_Executable_set_include,update_service,\
+ -I$(SRCDIR)/onlineupdate/source/libmar/src/ \
+ -I$(SRCDIR)/onlineupdate/source/libmar/verify/ \
+ -I$(SRCDIR)/onlineupdate/source/libmar/sign/ \
+ $$(INCLUDE) \
+))
+
+$(eval $(call gb_Executable_add_libs,update_service,\
+ ws2_32.lib \
+ Crypt32.lib \
+))
+
+$(eval $(call gb_Executable_add_cxxobjects,update_service,\
+ onlineupdate/source/libmar/sign/nss_secutil \
+ onlineupdate/source/libmar/sign/mar_sign \
+ onlineupdate/source/libmar/verify/cryptox \
+ onlineupdate/source/libmar/verify/mar_verify \
+ onlineupdate/source/libmar/tool/mar \
+))
+
+# vim:set shiftwidth=4 tabstop=4 noexpandtab: */