warzone2100/tools/lobbyserver_cpp/configure.ac

18 lines
396 B
Plaintext

# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.56)
AC_INIT([Warzone 2100],[TRUNK],[http://wz2100.net/],[warzone2100])
AM_INIT_AUTOMAKE([1.8])
AC_CONFIG_SRCDIR([src/main.cpp])
# Checks for programs.
AC_PROG_CC_STDC
# We need a C++ compiler for build_tools/autorevision
AC_PROG_CXX
AC_CONFIG_HEADER([config.h])
AC_CONFIG_FILES([Makefile
src/Makefile])
AC_OUTPUT