autotools: Add an option to install demo clients

This patch adds a configure option which will enable
user to install demo clients if desired. It is disabled
by default.

v2: Remove AC_DEFINE as it is not necesary
This commit is contained in:
Armin K
2013-07-14 17:26:23 +02:00
committed by Kristian Høgsberg
parent 77ab1721b8
commit aac6021bc0
2 changed files with 15 additions and 0 deletions
+9
View File
@@ -2,12 +2,21 @@ bin_PROGRAMS = \
weston-info \
$(terminal)
if ENABLE_DEMO_CLIENTS
bin_PROGRAMS += \
$(clients_programs) \
$(pango_programs) \
$(poppler_programs) \
$(simple_clients_programs) \
$(simple_egl_clients_programs)
else
noinst_PROGRAMS = \
$(clients_programs) \
$(pango_programs) \
$(poppler_programs) \
$(simple_clients_programs) \
$(simple_egl_clients_programs)
endif
libexec_PROGRAMS = \
$(desktop_shell) \