Minor GIR fixes (#3261)

* Ensure GIR file is aware of `create/` sources

It was missing the comments for the `VipsTextWrap` enum.

* Avoid new lines in enum members
This commit is contained in:
Kleis Auke Wolthuizen 2023-01-04 20:05:00 +01:00 committed by GitHub
parent febb71dba1
commit bd45fbd25c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -67,8 +67,7 @@
* VipsTextWrap:
* @VIPS_TEXT_WRAP_WORD: wrap at word boundaries
* @VIPS_TEXT_WRAP_CHAR: wrap at character boundaries
* @VIPS_TEXT_WRAP_WORD_CHAR: wrap at word boundaries, but fall back to
* character boundaries if there is not enough space for a full word
* @VIPS_TEXT_WRAP_WORD_CHAR: wrap at word boundaries, but fall back to character boundaries if there is not enough space for a full word
* @VIPS_TEXT_WRAP_NONE: no wrapping
*
* Sets the word wrapping style for vips_text() when used with a maximum

View File

@ -37,6 +37,8 @@ create_headers = files(
'pmask.h',
)
libvips_sources += create_sources
create_lib = static_library('create',
create_sources,
create_headers,