Makefile.in | 4 ++++ 1 file changed, 4 insertions(+) New commits: commit c461e9d7a0d6fbb20dc6ac22ec049f1ff9100856 Author: Christian Lohmaier <lohmaier+libreoff...@googlemail.com> AuthorDate: Wed Oct 12 11:25:35 2022 +0200 Commit: Christian Lohmaier <lohmaier+libreoff...@googlemail.com> CommitDate: Fri Oct 14 13:42:42 2022 +0200
add missing dependency for gbuild-to-json while most of the integration targets are meant to have a nice debugging environment, others like the vim-ide-integration or also the vscode one seek to provide a nice editing experience with code completion and code lookup. Ideally you'd be able to have the integration available immediately and can use the editor while a build is running in the background. But from a fresh builddir make vim-ide-integration (vscode-ide-integration) fails because of the missing dependency. That dependency probably is optional for the purpose of just providing a editing environment as opposed to providing build-targets like the integration does for some of the other IDEs, so I consider this commit more of a "good enough" workaround for the time being. Change-Id: I586445fed849d416fde9804a1e2a9c6ee0ed50eb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141248 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+libreoff...@googlemail.com> diff --git a/Makefile.in b/Makefile.in index 77df6b468c6d..c65ea071c072 100644 --- a/Makefile.in +++ b/Makefile.in @@ -500,6 +500,10 @@ $(eval $(call gb_Top_GbuildToIdeIntegration,$(ide)))) # this target is provided primarily for consistency with the other ide-integrations vscode-ide-integration: $(BUILDDIR)/vs-code.code-workspace vim-ide-integration +# ToDo: there probably is a way to have it at least create the compile-commnands.json file +# for the vim/vs-code integration without building the registry stuff +gbuildtojson: Rdb + $(BUILDDIR)/vs-code.code-workspace: $(BUILDDIR)/vs-code.code-workspace.template @test -e $@ || cp $< $@ && \ cmp -s $@ $< || echo "ATTN: $(@F) differs from $(<F), please check yourself for changes"