forked from horst3180/vertex-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
33 lines (28 loc) · 1020 Bytes
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
AC_INIT(
[vertex-theme],
[20160930],
[https://github.com/horst3180/Vertex-theme/issues],
[vertex-theme],
[https://github.com/horst3180/Vertex-theme],
[]
)
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign])
AC_PROG_MKDIR_P
VERTEX_ENABLE([CINNAMON], [cinnamon], [Cinnamon], [disable])
VERTEX_ENABLE([DARK], [dark], [Vertex Dark], [disable])
VERTEX_ENABLE([GNOME_SHELL], [gnome-shell], [GNOME Shell], [disable])
VERTEX_ENABLE([GTK2], [gtk2], [GTK2], [disable])
VERTEX_ENABLE([GTK3], [gtk3], [GTK3], [disable])
VERTEX_ENABLE([LIGHT], [light], [Vertex Light], [disable])
VERTEX_ENABLE([METACITY], [metacity], [Metacity], [disable])
VERTEX_ENABLE([UNITY], [unity], [Unity], [disable])
VERTEX_ENABLE([XFWM], [xfwm], [XFWM], [disable])
VERTEX_GNOME
AC_CONFIG_FILES([
common/Makefile
extra/Makefile
Makefile
])
AC_OUTPUT