mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-20 11:40:17 +01:00
Restructure the Makefiles in .sources, .am and .win32 to enable building cairo-script-interpreter on Win32. Some minor changes are needed to compile on MSVC: - include stdint.h to define INT_MAX-like macros - redefine "inline" - avoid deprecated functions (snprintf, replaced by _snprintf) - define _USE_MATH_DEFINES so that math.h defines M_PI, M_SQRT2 and M_LN2
13 lines
305 B
Text
13 lines
305 B
Text
libcairo_script_interpreter_sources = \
|
|
cairo-script-file.c \
|
|
cairo-script-hash.c \
|
|
cairo-script-interpreter.c \
|
|
cairo-script-objects.c \
|
|
cairo-script-operators.c \
|
|
cairo-script-scanner.c \
|
|
cairo-script-stack.c \
|
|
$(NULL)
|
|
|
|
libcairo_script_interpreter_headers = \
|
|
cairo-script-private.h \
|
|
$(NULL)
|