#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.65)
AC_INIT(AdresySieci, 1.0, kaya.kuzniar@gmail.com)
AC_CONFIG_SRCDIR(src/main.cpp)
AC_CONFIG_HEADERS(include/config.h)
AM_INIT_AUTOMAKE

# Checks for programs.
AC_PROG_CXX
AC_PROG_CC

# Checks for libraries.

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL

# Checks for library functions.

AC_OUTPUT( Makefile src/Makefile)
