mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-05-05 13:28:07 +02:00
Use '-' to separate words in file names
Eventually we will want more functionality in the shared library and we will rename it at that point. Perhaps we'll name it libnih, but for now let's stick with libconfig-parser.
This commit is contained in:
parent
bde5e9fc00
commit
9b935c8239
6 changed files with 9 additions and 8 deletions
|
|
@ -81,14 +81,14 @@ wayland_desktop_shell_SOURCES = \
|
|||
desktop-shell-client-protocol.h \
|
||||
desktop-shell-protocol.c
|
||||
wayland_desktop_shell_LDADD = $(toolkit_libs) \
|
||||
../shared/libconfigparser.la
|
||||
../shared/libconfig-parser.la
|
||||
|
||||
wayland_tablet_shell_SOURCES = \
|
||||
tablet-shell.c \
|
||||
tablet-shell-client-protocol.h \
|
||||
tablet-shell-protocol.c
|
||||
wayland_tablet_shell_LDADD = $(toolkit_libs) \
|
||||
../shared/libconfigparser.la
|
||||
../shared/libconfig-parser.la
|
||||
|
||||
BUILT_SOURCES = \
|
||||
screenshooter-client-protocol.h \
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
#include <wayland-client.h>
|
||||
#include "cairo-util.h"
|
||||
#include "window.h"
|
||||
#include "../shared/configparser.h"
|
||||
#include "../shared/config-parser.h"
|
||||
|
||||
#include "desktop-shell-client-protocol.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include "window.h"
|
||||
#include "cairo-util.h"
|
||||
#include "../shared/configparser.h"
|
||||
#include "../shared/config-parser.h"
|
||||
|
||||
#include "tablet-shell-client-protocol.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
noinst_LTLIBRARIES = libconfigparser.la
|
||||
libconfigparser_la_SOURCES = configparser.c \
|
||||
configparser.h
|
||||
noinst_LTLIBRARIES = libconfig-parser.la
|
||||
libconfig_parser_la_SOURCES = \
|
||||
config-parser.c \
|
||||
config-parser.h
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include "configparser.h"
|
||||
#include "config-parser.h"
|
||||
|
||||
static int
|
||||
handle_key(const struct config_key *key, const char *value)
|
||||
Loading…
Add table
Reference in a new issue