mirror of
https://github.com/gryf/wmaker.git
synced 2026-04-08 17:03:31 +02:00
This patch is adding a small test app to validate that _NET_WM_FULLSCREEN_MONITORS is working as expected.
20 lines
475 B
Makefile
20 lines
475 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
EXTRA_DIST = notest.c
|
|
|
|
noinst_PROGRAMS = wtest wm_fsm_test
|
|
|
|
wtest_SOURCES = wtest.c
|
|
|
|
wtest_LDADD = $(top_builddir)/wmlib/libWMaker.la @XLFLAGS@ @XLIBS@
|
|
|
|
AM_CPPFLAGS = -g -D_BSD_SOURCE @XCFLAGS@ -I$(top_srcdir)/wmlib
|
|
|
|
wm_fsm_test_SOURCES = wm_fsm_test.c
|
|
|
|
wm_fsm_test_CPPFLAGS = $(shell pkg-config --cflags gtk+-3.0)
|
|
|
|
wm_fsm_test_LDFLAGS = $(shell pkg-config --libs gtk+-3.0) -lX11
|