summaryrefslogtreecommitdiff
path: root/l10ntools/Executable_propex.mk
diff options
context:
space:
mode:
authorZolnai Tamás <zolnaitamas2000@gmail.com>2012-10-06 22:10:41 +0200
committerZolnai Tamás <zolnaitamas2000@gmail.com>2012-10-08 17:14:20 +0200
commitf73618e9dea03d27138cd4599e351249a79bf46b (patch)
treebffb165dd26e538a5957f7cef8d8d5d7d90a62c5 /l10ntools/Executable_propex.mk
parentf9e4d3bfe8eedd49afc2d2161f47a8825a02eec8 (diff)
Move propex/propmerge code to C++
Changes: -Use same methods and commandline params as other localizers -Work with one lang during mergeing -Work well with comments -Correct makefiles according to one lang concept Plus delete propex.bat to avoid conflicts Change-Id: Ia9d2886db263c31f29692c3f6da2b8ec6542b564
Diffstat (limited to 'l10ntools/Executable_propex.mk')
-rw-r--r--l10ntools/Executable_propex.mk32
1 files changed, 32 insertions, 0 deletions
diff --git a/l10ntools/Executable_propex.mk b/l10ntools/Executable_propex.mk
new file mode 100644
index 000000000000..d8dc16d323c2
--- /dev/null
+++ b/l10ntools/Executable_propex.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,propex))
+
+$(eval $(call gb_Executable_set_include,propex,\
+ -I$(SRCDIR)/l10ntools/inc \
+ $$(INCLUDE) \
+))
+
+$(eval $(call gb_Executable_use_libraries,propex,\
+ sal \
+ i18nregexp \
+))
+
+$(eval $(call gb_Executable_use_static_libraries,propex,\
+ transex \
+))
+
+$(eval $(call gb_Executable_add_exception_objects,propex,\
+ l10ntools/source/propmerge \
+ l10ntools/source/propex \
+))
+
+# vim: set noet sw=4 ts=4: