build: link with Imlib2 by default
Imlib2 has a cache for image. That makes it faster than GdkPixBuf when drawing many times the same images. Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
5484b1bebe
commit
acedf9eb70
2
README
2
README
|
@ -12,7 +12,7 @@ In order to build awesome itself, you need header files and libs of:
|
||||||
- pango and pangocairo
|
- pango and pangocairo
|
||||||
- libev
|
- libev
|
||||||
- glib
|
- glib
|
||||||
- GdkPixBuf or Imlib2 (use -DWITH_IMLIB2=ON with cmake)
|
- Imlib2 or GdkPixBuf (use -DWITH_IMLIB2=OFF with cmake)
|
||||||
- dbus (optional, use -DWITH_DBUS=OFF with cmake to disable)
|
- dbus (optional, use -DWITH_DBUS=OFF with cmake to disable)
|
||||||
- gperf
|
- gperf
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ set(CMAKE_BUILD_TYPE RELEASE)
|
||||||
set(CURSES_NEED_NCURSES true)
|
set(CURSES_NEED_NCURSES true)
|
||||||
|
|
||||||
option(WITH_DBUS "build with D-BUS" ON)
|
option(WITH_DBUS "build with D-BUS" ON)
|
||||||
option(WITH_IMLIB2 "build with Imlib2" OFF)
|
option(WITH_IMLIB2 "build with Imlib2" ON)
|
||||||
option(GENERATE_MANPAGES "generate manpages" ON)
|
option(GENERATE_MANPAGES "generate manpages" ON)
|
||||||
option(GENERATE_LUADOC "generate luadoc" ON)
|
option(GENERATE_LUADOC "generate luadoc" ON)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue