summaryrefslogtreecommitdiff
path: root/vcl/Executable_pptfuzzer.mk
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-03-02 14:41:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-03-15 13:44:15 +0000
commitf5bfdb06e3a14e0a754d09690a323a6f8ba3f0fa (patch)
tree56753b2fb45a390a00f4df52ab078bd9e235a6af /vcl/Executable_pptfuzzer.mk
parent4af16b2f00c3d7d5c48f65aeff2c34fff3942ada (diff)
add ppt fuzzer
Change-Id: I283d24fc2d7420273c3769fcd4ea3938da85afb4
Diffstat (limited to 'vcl/Executable_pptfuzzer.mk')
-rw-r--r--vcl/Executable_pptfuzzer.mk47
1 files changed, 47 insertions, 0 deletions
diff --git a/vcl/Executable_pptfuzzer.mk b/vcl/Executable_pptfuzzer.mk
new file mode 100644
index 000000000000..fc3cca2eb7c8
--- /dev/null
+++ b/vcl/Executable_pptfuzzer.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,pptfuzzer))
+
+$(eval $(call gb_Executable_use_api,pptfuzzer,\
+ offapi \
+ udkapi \
+))
+
+$(eval $(call gb_Executable_use_externals,pptfuzzer,\
+ $(fuzzer_externals) \
+))
+
+$(eval $(call gb_Executable_set_include,pptfuzzer,\
+ $$(INCLUDE) \
+ -I$(SRCDIR)/vcl/inc \
+))
+
+$(eval $(call gb_Executable_use_libraries,pptfuzzer,\
+ $(fuzzer_libraries) \
+))
+
+$(eval $(call gb_Executable_use_static_libraries,pptfuzzer,\
+ findsofficepath \
+ ulingu \
+ fuzzer \
+))
+
+$(eval $(call gb_Executable_add_exception_objects,pptfuzzer,\
+ vcl/workben/pptfuzzer \
+))
+
+$(eval $(call gb_Executable_add_libs,pptfuzzer,\
+ -lFuzzingEngine \
+))
+
+# vim: set noet sw=4 ts=4: