summaryrefslogtreecommitdiff
path: root/comphelper/StaticLibrary_windows_process.mk
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-08-07 15:35:30 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-08-08 07:07:21 +0200
commit5875fd0313cb0aeb7e63d5ea9455f83ea18787b5 (patch)
tree1e7ed70496f073d88bbaba3789a8e1160cd8f790 /comphelper/StaticLibrary_windows_process.mk
parent9d184e2cc9a9a78a61ae9b91a66e1153f778d9a4 (diff)
updater: move the windows process starting code to comphelper
Change-Id: I1a499f57d01ee28afdb2c4f85dc976f2e6837dfd Reviewed-on: https://gerrit.libreoffice.org/40837 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'comphelper/StaticLibrary_windows_process.mk')
-rw-r--r--comphelper/StaticLibrary_windows_process.mk24
1 files changed, 24 insertions, 0 deletions
diff --git a/comphelper/StaticLibrary_windows_process.mk b/comphelper/StaticLibrary_windows_process.mk
new file mode 100644
index 000000000000..1b086eac952b
--- /dev/null
+++ b/comphelper/StaticLibrary_windows_process.mk
@@ -0,0 +1,24 @@
+# -*- 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_StaticLibrary_StaticLibrary,windows_process))
+
+$(eval $(call gb_StaticLibrary_set_include,windows_process,\
+ $$(INCLUDE) \
+))
+
+$(eval $(call gb_StaticLibrary_add_defs,windows_process,\
+ -DUNICODE \
+))
+
+$(eval $(call gb_StaticLibrary_add_exception_objects,windows_process,\
+ comphelper/source/windows/windows_process \
+))
+
+# vim:set shiftwidth=4 tabstop=4 noexpandtab: */