diff options
author | Changyeon Lee <cyeon.lee@samsung.com> | 2019-10-22 15:53:45 +0900 |
---|---|---|
committer | Changyeon Lee <cyeon.lee@samsung.com> | 2019-11-11 21:03:04 +0900 |
commit | a2a59ed6e8d2cfcabfd231a3e32c64ce5aa97f11 (patch) | |
tree | 6bc726f11ee651ea33027e8756645cc395e72802 | |
parent | 97eb07001036016ee420d4989db72e0f595debb5 (diff) | |
download | wayland-extension-a2a59ed6e8d2cfcabfd231a3e32c64ce5aa97f11.tar.gz wayland-extension-a2a59ed6e8d2cfcabfd231a3e32c64ce5aa97f11.tar.bz2 wayland-extension-a2a59ed6e8d2cfcabfd231a3e32c64ce5aa97f11.zip |
build presentation_time protocol
Change-Id: I205439f9a9f56925ae3f136ee1f21d0037ad6fd1
-rw-r--r-- | Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 065b391..af3ce48 100644 --- a/Makefile.am +++ b/Makefile.am @@ -298,6 +298,23 @@ libtizen_dpms_client_la_SOURCES = protocol/tizen/tizen-dpms-protocol.c libtizen_dpms_client_la_CFLAGS = @WAYLAND_CLIENT_CFLAGS@ libtizen_dpms_client_la_LIBADD = @WAYLAND_CLIENT_LIBS@ +### presentation_time +protocol_LTLIBRARIES += \ + libpresentation-time-server.la \ + libpresentation-time-client.la +pkgconfig_DATA += \ + src/presentation-time-server.pc \ + src/presentation-time-client.pc +protocolinclude_HEADERS += \ + protocol/stable/presentation-time-server-protocol.h \ + protocol/stable/presentation-time-client-protocol.h +libpresentation_time_server_la_SOURCES = protocol/stable/presentation-time-protocol.c +libpresentation_time_server_la_CFLAGS = @WAYLAND_SERVER_CFLAGS@ +libpresentation_time_server_la_LIBADD = @WAYLAND_SERVER_LIBS@ +libpresentation_time_client_la_SOURCES = protocol/stable/presentation-time-protocol.c +libpresentation_time_client_la_CFLAGS = @WAYLAND_CLIENT_CFLAGS@ +libpresentation_time_client_la_LIBADD = @WAYLAND_CLIENT_LIBS@ + ### wayland-protocols unstable_protocols = \ protocol/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml \ |