mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-02 10:56:57 +03:00
32 lines
1015 B
Makefile
32 lines
1015 B
Makefile
# ----------------------------------------------------------------------------
|
|
# GTK-specific options
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# Where to search for NetSurf's resources after looking in ~/.netsurf and
|
|
# $NETSURFRES. It must have a trailing /
|
|
NETSURF_GTK_RESOURCES := $(PREFIX)/share/netsurf/
|
|
|
|
# Where to install the netsurf binary
|
|
NETSURF_GTK_BIN := $(PREFIX)/bin/
|
|
|
|
# Enable NetSurf's use of librsvg in conjunction with Cairo to display SVGs
|
|
# Valid options: YES, NO, AUTO
|
|
NETSURF_USE_RSVG := AUTO
|
|
|
|
# Enable NetSurf's use of libsvgtiny for displaying SVGs
|
|
# Valid options: YES, NO, AUTO
|
|
NETSURF_USE_NSSVG := AUTO
|
|
|
|
# Enable NetSurf's use of librosprite for displaying RISC OS Sprites
|
|
# Valid options: YES, NO, AUTO
|
|
NETSURF_USE_ROSPRITE := AUTO
|
|
|
|
# Enable building the source object cache filesystem based backing store.
|
|
NETSURF_FS_BACKING_STORE := YES
|
|
|
|
# Set default GTK version to build for (2 or 3)
|
|
NETSURF_GTK_MAJOR ?= 2
|
|
|
|
# Optimisation levels
|
|
CFLAGS += -O2
|