configure.ac 619 B

1234567891011121314151617181920212223242526
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.69])
  4. AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
  5. dnl AC_CONFIG_SRCDIR([src/main-window.h])
  6. PKG_CHECK_MODULES([MYAPP], [gtkmm-3.0 >= 3.8.0])
  7. AM_INIT_AUTOMAKE
  8. AC_CONFIG_HEADERS([config.h])
  9. # Checks for programs.
  10. AC_PROG_CXX
  11. # AC_PROG_CC
  12. # Checks for libraries.
  13. # Checks for header files.
  14. # Checks for typedefs, structures, and compiler characteristics.
  15. # Checks for library functions.
  16. AC_CONFIG_FILES([Makefile
  17. src/Makefile])
  18. AC_OUTPUT