mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2025-12-26 14:18:36 +00:00
Add a common.m4 file to be included directly in other project. This include will include all needed checks to use spice-common. Just include directly this file in your configure.ac. This will define SPICE_COMMON_CFLAGS and SPICE_COMMON_DIR (for linking .la files) which are needed to use spice-common. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Kevin Pouget <kpouget@redhat.com>
7 lines
336 B
Plaintext
7 lines
336 B
Plaintext
dnl This file should be included by spice-common user from
|
|
dnl configure.ac to have all required checks in order to use spice-common
|
|
m4_define(spice_common_dir,m4_bpatsubst(__file__,[/m4/common\.m4],[]))dnl
|
|
dnl Automatically include m4 files in m4 directory
|
|
AC_CONFIG_MACRO_DIRS(spice_common_dir[/m4])dnl
|
|
SPICE_COMMON(spice_common_dir)
|