summaryrefslogtreecommitdiff
path: root/vcl/Executable_pctfuzzer.mk
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-28 12:42:02 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-31 16:39:17 +0000
commitfedbbc5e3f22baab26adf3e5f921f8cebe7a4bf9 (patch)
treeb6a9d0153d821b9346922d7f4c5271863958aa46 /vcl/Executable_pctfuzzer.mk
parent3e27ba70ce212642026874ba73021930a06cdbbd (diff)
add pct fuzzer
Change-Id: I6a1787b484479268223fb59bf510c20be833d4d0
Diffstat (limited to 'vcl/Executable_pctfuzzer.mk')
-rw-r--r--vcl/Executable_pctfuzzer.mk47
1 files changed, 47 insertions, 0 deletions
diff --git a/vcl/Executable_pctfuzzer.mk b/vcl/Executable_pctfuzzer.mk
new file mode 100644
index 000000000000..670a7fe3d3e8
--- /dev/null
+++ b/vcl/Executable_pctfuzzer.mk
@@ -0,0 +1,47 @@
+# -*- 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/.
+#
+
+include $(SRCDIR)/vcl/commonfuzzer.mk
+
+$(eval $(call gb_Executable_Executable,pctfuzzer))
+
+$(eval $(call gb_Executable_use_api,pctfuzzer,\
+ offapi \
+ udkapi \
+))
+
+$(eval $(call gb_Executable_use_externals,pctfuzzer,\
+ $(fuzzer_externals) \
+))
+
+$(eval $(call gb_Executable_set_include,pctfuzzer,\
+ $$(INCLUDE) \
+ -I$(SRCDIR)/vcl/inc \
+))
+
+$(eval $(call gb_Executable_use_libraries,pctfuzzer,\
+ $(fuzzer_libraries) \
+))
+
+$(eval $(call gb_Executable_use_static_libraries,pctfuzzer,\
+ findsofficepath \
+ ulingu \
+ fuzzer \
+))
+
+$(eval $(call gb_Executable_add_exception_objects,pctfuzzer,\
+ vcl/workben/pctfuzzer \
+))
+
+$(eval $(call gb_Executable_add_libs,pctfuzzer,\
+ -lFuzzingEngine \
+))
+
+# vim: set noet sw=4 ts=4: