roleplay/client/configure.ac

29 lines
658 B
Plaintext

# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.00])
AC_INIT([roleplay], [v1.0])
AC_CONFIG_SRCDIR([src/main.c])
AC_CONFIG_AUX_DIR([config])
# Initialize automake
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
# Checks for programs.
AC_PROG_CC
# Checks for libraries.
PKG_CHECK_MODULES([RAYLIB], [raylib])
AC_SUBST([RAYLIB_CFLAGS])
AC_SUBST([RAYLIB_LIBS])
# Checks for header files.
AC_CHECK_HEADER([stdint.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([Makefile])
AC_OUTPUT