mirror of
https://github.com/labwc/labwc.git
synced 2026-02-06 04:06:33 -05:00
Removing newlines in rc.xml and menu.xml caused parser error with following content: <!-- - - Some comments - --> ...though it is a valid XML. Let's not do that. I moved `grab_file()` to `buf.c` and renamed it to `buf_from_file()`, because it now directly touches `struct buf` and I don't like having a source file only for one function.
22 lines
336 B
Meson
22 lines
336 B
Meson
labwc_sources += files(
|
|
'box.c',
|
|
'buf.c',
|
|
'dir.c',
|
|
'edge.c',
|
|
'fd-util.c',
|
|
'file-helpers.c',
|
|
'font.c',
|
|
'graphic-helpers.c',
|
|
'lab-scene-rect.c',
|
|
'match.c',
|
|
'mem.c',
|
|
'nodename.c',
|
|
'node-type.c',
|
|
'parse-bool.c',
|
|
'parse-double.c',
|
|
'scene-helpers.c',
|
|
'set.c',
|
|
'spawn.c',
|
|
'string-helpers.c',
|
|
'xml.c',
|
|
)
|