diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2016-10-26 12:45:26 +0200 |
---|---|---|
committer | Björn Michaelsen <bjoern.michaelsen@canonical.com> | 2016-10-26 22:41:32 +0000 |
commit | dd8c8d81de4f361d8f4d259d8a27ac15ab871031 (patch) | |
tree | f5f58699b8bac68785b539b1b78940c8be7ccf06 /solenv/Executable_gbuildtojson.mk | |
parent | 329ecb67808767d677383e5fd6089feaab4cd9e4 (diff) |
add test for running gbuildtoide on non-build modules
- do concat for json in C++, everything else seems fragile on Windows
- have APPEND vars separately
- check that gbuildtoide work on modules without a full build (modulo
some blacklisted "creative" ones)
Change-Id: I6fe267fee7d1b77d758072303729387dfeb8e6c8
Reviewed-on: https://gerrit.libreoffice.org/30293
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'solenv/Executable_gbuildtojson.mk')
-rw-r--r-- | solenv/Executable_gbuildtojson.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/solenv/Executable_gbuildtojson.mk b/solenv/Executable_gbuildtojson.mk new file mode 100644 index 000000000000..6797bf3ac83e --- /dev/null +++ b/solenv/Executable_gbuildtojson.mk @@ -0,0 +1,16 @@ +# -*- 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,gbuildtojson)) + +$(eval $(call gb_Executable_add_exception_objects,gbuildtojson,\ + solenv/gbuildtojson/gbuildtojson \ +)) + +# vim:set noet sw=4 ts=4: |